<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<script src="js/jquery-1.12.3 (1).js"></script>
<style type="text/css">
.wap{
height: 500px;
width: 500px;
background-color:aquamarine;
position: relative;
}
img{
position: absolute;
}
</style>
<script type="text/javascript">
$(function(){
$(".wap").mousemove(function(e){
$(".img").css({
"top":e.offsetY,
"left":e.offsetX
})
});
});
</script>
</head>
<body>
<div class="wap">
</div>
<img class="img" height="30" width="30" src="img/untitled.png"/>
</body>
</html>
图片随鼠标动(jQuery)
Posted PHP`reader
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了图片随鼠标动(jQuery)相关的知识,希望对你有一定的参考价值。
以上是关于图片随鼠标动(jQuery)的主要内容,如果未能解决你的问题,请参考以下文章