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

jquery——解决鼠标移入移出导致盒子不停移动的bug

时间:2018-06-21 22:39:48      阅读:924      评论:0      收藏:0      [点我收藏+]

标签:char   AC   快速   ntop   into   .com   this   com   鼠标   

使用mouseover()、mouseout()时会出现这样一种情况,鼠标快速多次移入移出后这个盒子会在鼠标不动后继续运动

代码如下:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script type="text/javascript" src="jquery-1.12.4.min.js"></script>
    <script type="text/javascript">
        $(function () {
            $(‘.box‘).mouseover(function () {
                    $(this).animate({marginTop:100});
                });
            $(‘.box‘).mouseout(function () {
                $(this).animate({marginTop:50});
            })
        })
    </script>
    <style type="text/css">
        .box{
            width:300px;
            height:300px;
            background-color: hotpink;
            margin:50px auto;
        }
    </style>
</head>
<body>
    <div class="box" id="div"></div>
</body>
</html>

此时会有这种bug:

技术分享图片

解决方法:在mouseover()和mouseout()前面加上stop()就好啦!

    <script type="text/javascript">
        $(function () {
            $(‘.box‘).mouseover(function () {
                    $(this).stop().animate({marginTop:100});
                });
            $(‘.box‘).mouseout(function () {
                $(this).stop().animate({marginTop:50});
            })
        })
    </script>

 

jquery——解决鼠标移入移出导致盒子不停移动的bug

标签:char   AC   快速   ntop   into   .com   this   com   鼠标   

原文地址:https://www.cnblogs.com/gaoquanquan/p/9210882.html

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