17.html
来自「希望大家多多交流」· HTML 代码 · 共 21 行
HTML
21 行
<html>
<head>
<style>
.mystyle{
position:absolute;
left:12;
top:222;
}
</style>
<script language="JavaScript">
function move(x, y){
mypic.style.left = x;
mypic.style.top = y;
}
</script>
</head>
<body onMousemove="move(event.x, event.y)" >
正文信息:
<div class="mystyle" id="mypic"><img src="fish.gif"></div>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?