美文网首页
鼠标点击图片缩放

鼠标点击图片缩放

作者: 骚伦 | 来源:发表于2018-11-27 19:59 被阅读0次

    鼠标点击图片缩放

    <script type="text/javascript">  
        $(function(){  
            $('#div1 img').mouseenter(function(){  
               var wValue=1.5 * $(this).width();  
                var hValue=1.5 * $(this).height();        
                $(this).animate({width: wValue,  
                                height: hValue,  
                                left:("-"+(0.5 * $(this).width())/2),  
                                top:("-"+(0.5 * $(this).height())/2)}, 1000);  
            }).mouseleave(function(){  
                $(this).animate({width: "100",  
                                             height: "80",  
                                             left:"0px",  
                                             top:"0px"}, 1000 );  
            });  
        });  
    </script>
    

    相关文章

      网友评论

          本文标题:鼠标点击图片缩放

          本文链接:https://www.haomeiwen.com/subject/qmpnqqtx.html