37 lines
897 B
HTML
37 lines
897 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Drag and Resize Element</title>
|
|
<style>
|
|
#draggable {
|
|
width: 200px;
|
|
height: 200px;
|
|
background-color: lightblue;
|
|
position: absolute;
|
|
top: 50px;
|
|
left: 50px;
|
|
cursor: move; /* 改变鼠标指针样式 */
|
|
}
|
|
.resizer {
|
|
width: 10px;
|
|
height: 10px;
|
|
background-color: darkblue;
|
|
position: absolute;
|
|
bottom: 0;
|
|
right: 0;
|
|
cursor: se-resize; /* 改变鼠标指针样式 */
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="draggable">
|
|
Drag and Resize Me
|
|
<div class="resizer"></div>
|
|
</div>
|
|
|
|
<script src="drag.js"></script>
|
|
</body>
|
|
</html>
|