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

这样写错了吗。。。显示不出来

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

        <title>jQuery动画特效</title>

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

        <style>

           span

{

    position:absolute;

    width:80px;

    height:80px;

    border: solid 1px #ccc;

    margin: 0px 8px;

    background-color: Red;

    color:White;

    vertical-align:middle

}

div

{

    margin: 10px 0px;

    position:relative;


        </style>

    </head>

    

    <body>

        <input type="button" class="btns1" value="左移"/>

        <input type="button" class="btns2" value="右移"/>

         <span></span>

        <div id="tip"></div>

        <script>

            $(function(){

              

                $(".btns1").bind("click",function(){

                    $("span").animate{

                        left:"-=50px"

                    }, 3000, function () {

                        $("#tip").html("执行完成!");

                    }

                 });

                 

                 $(".btns2").bind("click",function(){

                    $("span").animate{

                        left:"+=50px"

                    }, 3000, function () {

                        $("#tip").html("执行完成!");

                    }

                 });

                

                });

        </script>

    </body>

</html>


正在回答

2 回答

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>jQuery动画特效</title>
        <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>
        <style>
           span
{
    position:absolute;
    width:80px;
    height:80px;
    border: solid 1px #ccc;
    margin: 0px 8px;
    background-color: Red;
    color:White;
    vertical-align:middle
}
div
{
    margin: 10px 0px;
    position:relative;
} 

        </style>
    </head>
    
    <body>
        <input type="button" class="btns1" value="左移"/>
        <input type="button" class="btns2" value="右移"/>
         <span></span>
        <div id="tip"></div>
        <script>
            $(function(){
              
                $(".btns1").bind("click",function(){
                    $("span").animate({
                        left:"-=50px"
                    }, 3000, function () {
                        $("#tip").html("执行完成!");
                    })
                 });
                 
                 $(".btns2").bind("click",function(){
                    $("span").animate({
                        left:"+=50px"
                    }, 3000, function () {
                        $("#tip").html("执行完成!");
                    })
                 });
                
                });
        </script>
    </body>
</html>

注意36 40 44 48

$("span").animate({left:"+=50px"}, 3000, function () { $("#tip").html("执行完成!");})

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

Y_du

38 42 46 50行
2015-10-09 回复 有任何疑惑可以回复我~
#2

看煙花墜落的淺殤 提问者

非常感谢!
2015-10-10 回复 有任何疑惑可以回复我~

有时候可以看浏览器报出了什么warming

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

举报

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

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

进入课程

这样写错了吗。。。显示不出来

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