码迷,mamicode.com
首页 > Web开发 > 详细

jQuery练习之图片跟随

时间:2021-04-28 12:06:03      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:query   pos   one   img   idt   height   hide   src   else   

<!DOCTYPE html>
<html>
    <head>
    <meta charset="UTF-8">
    <style>
        body{
          text-align:center;
        }
        #small{
            margin-top:40px;
        }
        #showBig{
            position:absolute;
            display:none;
        }
    </style>
    <!--引入jQuery库-->
    <script type="text/javascript" src="../lib/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"){
                $("#showBig").offset({
                    left: event.pageX+50,
                    top: event.pageY+50 
                });
            }
        });
    });
    </script>
    </head>
    <body>
        <img id="small" src="../img/small.jpg">
        <div id="showBig">
            <img src="../img/big.jpg" width="300px" height="300px">
        </div>
    </body>
</html>

jQuery练习之图片跟随

标签:query   pos   one   img   idt   height   hide   src   else   

原文地址:https://www.cnblogs.com/fate-/p/14711110.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!