gpt4 book ai didi

javascript - JQuery 如何让
  • 上下跳转?
  • 转载 作者:太空宇宙 更新时间:2023-11-04 14:55:04 25 4
    gpt4 key购买 nike

    我有一个带有“加入”项的水平导航菜单。我希望 #jump 项目在页面加载后立即无限期地上下跳动。

    这给出了效果,但只有一次并且只有在悬停时:

     <script type="text/javascript">
    $('#jump').hover(function(){
    $(this).animate({bottom:'5px'},'fast');
    }, function() {
    $(this).animate({bottom:'0px'},'fast');
    });
    </script>

    如果我成功了:ready() 它停止工作。

    最佳答案

    为什么 jquery 只使用 css animation

    #some{
    border-radius:100%;
    width:50px;
    height:50px;
    background:#ccc;
    animation:top 0.3s ease-in infinite; /*change the animation transition effect as your wish*/
    }

    @keyframes top{
    from{transform:translateY(0px);}
    to{transform:translateY(10px);}
    }
    <div id="some"></div>

    关于javascript - JQuery 如何让 <li> 上下跳转?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44083429/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com