<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style type="text/css">
body{
text-align: center;
}
#small{
margin-top: 150px;
}
#showBig{
position: absolute;
display: none;
}
</style>
<script type="text/javascript" src="../script/jquery-1.7.2.js"></script>
<script type="text/javascript">
$(function () {
$("#small").bind("mouseover mouseout mousemove",function (event){
if(event.type == "mouseover"){
$("#showBig").show();
}else if (event.type == "mouseout"){
$("#showBig").hide();
}else if (event.type == "mousemove"){
console.log(event);
$("#showBig").offset({
left:event.pageX+100,
top:event.pageY+100
});
}
});
});
</script>
</head>
<body>
<img id="small" src="../images/1.JPG"/>
<div id="showBig">
<img src="../images/1.JPG">
</div>
</body>
</html>
练习图片跟随
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
下一篇:jQuery事件的冒泡
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Jquery07--JQuery事件操作-javaScript事件对象-练习 图片跟随
JQuery事件操作$(function(){})和window.οnlοad=function(){}文章目录JQue
js javascript vue html jquery -
二十、让医生图片跟随鼠标移动
二十、让医生图片跟随鼠标移动!
pygame 鼠标移动 -
js实现图片跟随鼠标移动效果
<head> <meta charset="UTF-8"> <title></title> <style type="text/css"> #box { width: 1000px; height:
跟随鼠标移动效果 css javascript 偏移量 JavaScript