为了账号安全,请及时绑定邮箱和手机立即绑定

答案是这样么

<html>

    <head>

        <title>制作移动位置的动画</title>

        <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>

        <link href="style.css" rel="stylesheet" type="text/css" />

    </head>

    

    <body>

<style> div{

    position: absolute;

    width: 80px;

    height: 80px;

    right:10px;

    left:100px;

    border: solid 1px #ccc;

    margin: 0px 8px;

    background-color: Red;

    color: White;

    vertical-align: middle;

}</style>

        <h3>制作移动位置的动画</h3>

 

        <div></div>

         <input id="btnStop1" type="button" value="左移" />

           <input id="btnStop2" type="button" value="右移" />

        <script type="text/javascript">

            $(function () {

                 $("#btnStop1").bind("click", function () {                

               $("div").animate({

                    left: "-=100px"

                }, 3000, function () {                                     

                 });                 

            });

            $("#btnStop2").bind("click", function () {                

               $("div").animate({

                    left: "+=100px"

                }, 3000, function () {                                     

                 });                

            });

                });

        </script>

    </body>

</html>


正在回答

1 回答

可以的

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
jQuery基础课程
  • 参与学习       154768    人
  • 解答问题       7184    个

加入课程学习,有效提高前端开发速度

进入课程

答案是这样么

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信