0

请帮我在动画中编写匿名函数,我已经给出了我尝试过的代码,这是演示,我想知道如何在动画中编写匿名函数,就像我在 Css 按钮单击中所做的那样,谢谢进步

<html>
    <head>
        <title></title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> 
        <style type="text/css">
           #example{width:100px;height:100px;background: #F00;}
        </style>
        <script>
            $(document).ready(function(){
                $('#check').click(function(){
                    $('#example').css({width:function(){
                            console.log($(this).width());
                            return $(this).width()=="0"? "100":"0";
                    }});
                });
                $('#animate').click(function(){
                    $('#example').animate({width:function(){
                            console.log($(this).width());
                            return $(this).width()=="0"? "100":"0";
                    }});
                });
            });
        </script>
    </head>
    <body>
        <div id="example">            

        </div>
        <input type="button" value="Css" id="check"/>
        <input type="button" value="Animate" id="animate"/>
    </body>
</html>
4

1 回答 1

1

演示

$('#animate').click(function () {
    $('#example').animate({
        width: (function ($self) {
            console.log($self.width());
            return $self.width() == "0" ? "100" : "0";
        })($('#example'))
    });
});
于 2013-06-21T09:50:49.250 回答