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

jQuery实现圆盘活动抽奖程序效果

时间:2014-04-29 19:23:59      阅读:482      评论:0      收藏:0      [点我收藏+]

标签:http   class   div   code   java   javascript   tar   ext   string   art   c   

<script type="text/javascript" src="jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="jQueryRotate.2.2.js"></script>
<script type="text/javascript" src="jquery.easing.min.js"></script>
<script type="text/javascript">
$(function(){
    $("#startbtn").rotate({
        bind:{
            click:function(){
                var a = Math.floor(Math.random() * 360);
                 $(this).rotate({
                       duration:3000,
                       angle: 0,
                        animateTo:1440+a,
                        easing: $.easing.easeOutSine,
                        callback: function(){
                            alert(‘中奖了!‘+a);
                        }
                 });
            }
        }
    });
});
</script>
 

jQuery实现圆盘活动抽奖程序效果,码迷,mamicode.com

jQuery实现圆盘活动抽奖程序效果

标签:http   class   div   code   java   javascript   tar   ext   string   art   c   

原文地址:http://www.cnblogs.com/lunbawu/p/3697320.html

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