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

jQuery幸运大转盘_jQuery+PHP抽奖程序的简单实现

时间:2016-10-27 10:03:56      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:duration   doc   技术   nim   org   tar   asc   set   xhtml 1.0   

jQuery幸运大转盘_jQuery+PHP抽奖程序的简单实现


技术分享
 

在线实例

查看演示

 

完整代码

<!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">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>jQuery幸运大转盘_jQuery+PHP抽奖程序(上)</title>
        <style type="text/css">
            .demo{ position:relative;width:417px;}
            #disk{width:417px; height:417px; background:url(/api/jq/5733e347040d9/images/disk.jpg) no-repeat;}
            #start{width:163px; height:320px; position:absolute; top:46px; left:130px;}
            #start img{cursor:pointer}
        </style>
    </head>
    <body>
        <div class="container">
            <div class="demo">
                <div id="disk"></div>
                <div id="start"><img src="/api/jq/5733e347040d9/images/start.png" id="startbtn" alt="转盘开启"/></div>
            </div>
        </div>
        <script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/1.7.2/jquery.min.js"></script>
        <script type="text/javascript" src="/api/jq/5733e347040d9/jQueryRotate.2.2.js"></script>
        <script type="text/javascript" src="/api/jq/5733e347040d9/jquery.easing.min.js"></script>
        <script type="text/javascript">
            $(function() {
                $("#startbtn").rotate({
                    bind: {
                        click: function() {
                            var random = Math.floor(Math.random() * 360); //生成随机数
                            $(this).rotate({
                                duration: 3000, //转动时间间隔(速度单位ms)
                                angle: 0, //指针开始角度
                                animateTo: 3600 + random, //转动角度,当转动角度到达3600+random度时停止转动。
                                easing: $.easing.easeOutSine, //easing动画效果
                                callback: function() {  //回调函数
                                    alert(‘恭喜您,中奖了!‘);
                                }
                            });
                        }
                    }
                });
            });
        </script>
    </body>
</html>

  

 

jQuery幸运大转盘_jQuery+PHP抽奖程序的简单实现

标签:duration   doc   技术   nim   org   tar   asc   set   xhtml 1.0   

原文地址:http://www.cnblogs.com/niuboren/p/6002634.html

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