1. 我们经常写页面的时候会遇到页面很长需要做返回顶部的操作:
$("id /class").animate({scrollTop:$('.class').offset().top},2000)

  1. $(".sign,.sign-b,.title-d").click(function(){
  2. $('html,body').animate({scrollTop:$('.Lp2loding').offset().top},2000);
  3. });

2.砸金蛋活动

砸金蛋活动程序实现,一般的砸金蛋页面都包含完整的蛋和破碎的蛋以及锤子等图片。

砸金蛋包含的奖品,做到随机不重复的出现。如果需要记录奖品的值,需建立向后台数据库传值。
现在我的程序只涉及前端程序。

前端动画代码部分:

  1. HTML
  2. <div class="block1">
  3. <div class="eggs">
  4. <ul class="eggs-1">
  5. <li><img class="egg" src="data:images/eggs.png"></li>
  6. <li><img class="egg" src="data:images/eggs.png"></li>
  7. <div class="clear"></div>
  8. </ul>
  9. <ul class="eggs-2">
  10. <li><img class="egg" src="data:images/eggs.png"></li>
  11. <li><img class="egg" src="data:images/eggs.png"></li>
  12. <li><img class="egg" src="data:images/eggs.png"></li>
  13. <div class="clear"></div>
  14. </ul>
  15. <div class="chick">
  16. <div class="chick-success">
  17. <img src="data:images/chick.png">
  18. <div id="text"></div>
  19. <div class="jp">兑换奖品</div>
  20. </div>
  21. <div class="close">X</div>
  22. </div>
  23. </div>
  24. <p>您还有 <span id="chance">5</span>次砸蛋机会</p>
  25. </div>
  26. Animation CSS
  27. /**animation css**/
  28. .overlay,.overlay2 {width: 100%;height: 100%;position: fixed;background: rgba(0,0,0,0.5);z-index: 6;display: none;}
  29. .overlay2{z-index: 11;}
  30. .hammer {
  31. position: absolute;
  32. z-index: 10;
  33. left: 50%;
  34. top: 0%;
  35. opacity:0;
  36. max-width: none;
  37.  
  38. -webkit-animation: hammer 0.5s alternate;
  39. animation: hammer 0.5s alternate;
  40. transform-origin: bottom right;
  41. -webkit-transform-origin: bottom right;
  42.  
  43. }
  44. .egg{cursor:pointer;}
  45. .egg-po {
  46. display: block;
  47. max-width: none;
  48. display: none;
  49. }
  50. .eggs{position: relative;}
  51. .chick{display: none;z-index: 10;position: absolute;top: 0%;left: 50%;margin-left: -350px;}
  52. div#text {
  53. color: #fff;
  54. font-size: 20px;
  55. font-weight: bold;
  56. text-shadow: 1px 1px 0px #ca1414, -1px -1px 0px #ca1414, 1px 3px 0px #ca1414, -1px -3px 0px #ca1414, 3px 3px 0px #ca1414, -3px -3px 0px #ca1414;
  57. margin-top: -36%;
  58. text-align: center;
  59. }
  60. .close,.close-f {font-size: 24px;top: 20%;right: 20%;width: 30px;height: 30px;line-height: 30px;color: #fff;background: #ff0000;border-radius: 50px;position: absolute;cursor:pointer;}
  61. .close-f {top: -30px;right: -30px;}
  62. .jp {
  63. color: #fff;
  64. font-size: 18px;
  65. font-weight: bold;
  66. background: #ca1414;
  67. display: inline-block;
  68. padding: 0 40px;
  69. border-radius: 10px;
  70. line-height: 35px;
  71. cursor: pointer;
  72. margin-top: 20px;
  73. }
  74. @keyframes hammer
  75. {
  76. 0%
  77. {
  78. opacity: 1;
  79. }
  80.  
  81. 50%
  82. {
  83. transform: rotate(-15deg);
  84. opacity: 1;
  85. }
  86. 70%
  87. {
  88. opacity: 1;
  89. }
  90. 90%
  91. {
  92. opacity: 1;
  93. }
  94. 100%
  95. {
  96. opacity: 0;
  97. }
  98. }
  99. @-webkit-keyframes hammer
  100. {
  101. 0%
  102. {
  103. opacity: 1;
  104. }
  105. 50%
  106. {
  107. -webkit-transform: rotate(-15deg);
  108. opacity: 1;
  109. }
  110. 100%
  111. {
  112. opacity: 0;
  113. }
  114. }

JS动态效果实现

  1. <script type="text/javascript">
  2. //多少次砸蛋的机会
  3. var chance=5;
  4. $("#chance").text(chance);
  5. //设置奖品,每砸蛋一次砸中奖品从数组中删除,从剩下的奖品中重新抽,保证抽取的奖品不重复
  6. var msg = ["获得1000美元赠金","获得500元京东卡","获得U盘+高级笔+充电宝","获得保温杯","获得外汇交易书+高级伞+手机支架+海马刀"]
  7. for(let i=0;i<5;i++){
  8. function gift(){
  9. var num=Math.floor(Math.random() * msg.length);
  10. bb=msg.splice(num,1);
  11. // console.log(num,bb,msg.length)
  12. }
  13. }
  14. //设置主逻辑chance控制次数,gift()奖品,点击蛋之后,原来的蛋消失,锤子和破蛋出现
  15. function aClick() {
  16. // $(".eggs li").off("click", aClick);
  17. gift();
  18. chance-=1;
  19. $("#chance").text(chance);
  20.  
  21. if(chance<0){
  22. chance = 0;
  23. $("#chance").text(chance);
  24. $(".egg ").on("click", aClick);
  25. }
  26. else {
  27. var _this = $(this);
  28. var eggli=_this.parent('li');
  29. eggli.html('<img src="data:images/hammer.png" class="hammer"><img src="data:images/egg-po.png" class="egg-po" display="block">');

  30. setTimeout(function () {
  31. eggli.find(".egg-po").show();
    //再次设置setTimeout,填写所剩次数,弹出遮罩层,以及小鸡填写信息表等
  32.  
  33. setTimeout(function () {
  34. $(".overlay").show();
  35. $("#text").html(bb);
  36. $(".chick").show();
  37.  
  38. },500);
  39. },250);
  40.  
  41. $(".close").click(function () {
  42. $(".overlay,.chick").hide();
  43. })
  44. $(".jp").click(function(){
  45. // $(".overlay").css({'z-index':"11"});
  46. $(".overlay2,.form-sign").show();
  47. })
  48. $(".close-f").click(function () {
  49. $(".overlay,.overlay2,.form-sign,.chick").hide();
  50. })
  51. }
  52.  
  53. }
  54. $(".egg").on("click", aClick);
  55.  
  56. </script>

3.程序设计

此时需要三张背景图相同的背景图

  1. <style>
  2. *{padding: 0;margin: 0;}
  3. #slotmachine_wrapper {
  4. width:100%;
  5. background: url(gift-bg.jpg)top center no-repeat;
  6. }
  7.  
  8. #slotmachine {
  9. width:100%;
  10. max-width:1200px;
  11. position: relative;
  12. margin:0 auto;
  13. }
  14. /*Play Button*/
  15. #play_button{
  16. background: url(button.png)top center no-repeat;
  17. width: 388px;
  18. height: 126px;
  19. cursor: pointer;
  20. margin: 55px auto 0;
  21. }
  22. .reels {
  23. margin:0 auto;
  24. width: 100%;
  25. font-size:0;
  26. position: absolute;
  27. top: 28%;
  28.  
  29. }
  30. /*Slot Reel holder*/
  31. .center {
  32. width: 666px;
  33. margin: 0 auto;
  34. padding: 40px 0;
  35. position: relative;
  36. z-index: 2;
  37. }
  38. /*Reels */
  39. .slot {
  40. font-size:0;
  41. display:inline-block;
  42. width:208px;
  43. height:286px;
  44. position:relative;
  45. top:8px;
  46. }
  47. .slot_title{text-indent: -99999px;font-size: 0;}
  48. #reel_one,#reel_two,#reel_three {
  49. background:url(gift.jpg);
  50. background-repeat:repeat-y;
  51. zoom: .8;
  52. margin: 0 23px;
  53. box-shadow: 0 0 50px #cbbdbf;
  54. border-radius: 10px;
  55. }
  56. #reel_one{background-position:0 0;}
  57. #reel_two {background-position:0 286px;margin: 0 50px;}
  58. #reel_three {background-position:0 858px;}
  59. .reelOneAnimation{
  60. animation:animatedBackground .3s linear infinite;
  61. -webkit-animation:animatedBackground .3s linear infinite;
  62. -moz-animation:animatedBackground .3s linear infinite;
  63. -o-animation:animatedBackground .3s linear infinite;
  64. }
  65. .reelTwoAnimation{
  66. animation:animatedBackground 1s linear infinite;
  67. -webkit-animation:animatedBackground 1s linear infinite;
  68. -moz-animation:animatedBackground 1s linear infinite;
  69. -o-animation:animatedBackground 1s linear infinite;
  70. }
  71. .reelThreeAnimation {
  72. animation:animatedBackground .5s linear infinite;
  73. -webkit-animation:animatedBackground .5s linear infinite;
  74. -moz-animation:animatedBackground .5s linear infinite;
  75. -o-animation:animatedBackground .5s linear infinite;
  76. }
  77. .overlay {
  78. width: 100%;
  79. height: 100%;
  80. position: fixed;
  81. background: rgba(0,0,0,0.5);
  82. z-index: 3;
  83.  
  84. }
  85. .close {
  86. color: #bbcff2;
  87. font-size: 20px;
  88. top: 40px;
  89. position: absolute;
  90. right: 10px;
  91. border-radius: 100%;
  92. border: 1px solid;
  93. width: 30px;
  94. height: 30px;
  95. text-align: center;
  96. line-height: 30px;
  97. cursor: pointer;
  98. }
  99. .form-hover,.overlay{display: none;}
  100. /*Animation for reels */
  101. @keyframes animatedBackground {
  102. from {
  103. background-position:0 0;
  104. }
  105.  
  106. to {
  107. background-position:0 1000%;
  108. }
  109. }
  110.  
  111. @-webkit-keyframes animatedBackground {
  112. from {
  113. background-position:0 1000%;
  114. }
  115.  
  116. to {
  117. background-position:0 0;
  118. }
  119. }
  120.  
  121. @-moz-keyframes animatedBackground {
  122. from {
  123. background-position:0 1000%;
  124. }
  125.  
  126. to {
  127. background-position:0 0;
  128. }
  129. }
  130.  
  131. @-o-keyframes animatedBackground {
  132. from {
  133. background-position:0 1000%;
  134. }
  135.  
  136. to {
  137. background-position:0 0;
  138. }
  139. }
  140. /*Slot Machine foot*/
  141. .slot_foot {
  142. width:110%;
  143. height:40px;
  144. background:#000;
  145. margin:0 auto;
  146. position:relative;
  147. margin-left:-5%;
  148. }
  149. </style>
  150. <div class="overlay"></div>
  151. <div id="slotmachine_wrapper">
  152. <h1 class="slot_title">
  153. Facebook lottery
  154. </h1>
  155. <!-- Slot machine sign and lights-->
  156. <div id="slotmachine">
  157. <img class="img-pc" src="gift-img.jpg">
  158. <img class="img-m" src="gift-m-img.jpg">
  159. <!-- Reels-->
  160. <div class="reels">
  161. <div class="reels_bk">
  162. <div class="center">
  163. <div class="slot" id="reel_one">
  164. </div>
  165.  
  166. <div class="slot" id="reel_two">
  167. </div>
  168.  
  169. <div class="slot" id="reel_three">
  170. </div>
  171. </div>
  172. </div>
  173. <div id="play_button" >
  174. </div>
  175. </div>
  176. </div>
  177. </div>

Js部分控制出现的奖品,并弹出表单已获得联系信息

  1. <script>
  2. (function espressoBarSlot() {
  3. //Background position for reels
  4. var reelGift = ['$100000模拟赠金', '免费体验模拟账户', '$50000模拟赠金', '免费体验真实账户', '市场价$200在线交易课堂','$10000模拟赠金','1个月交易教学直播会员','专业分析师30分钟电话指导',];
  5. var randomNum = Math.floor(Math.random() * 8)
  6. var randomReelOne = -286*randomNum;
  7. //Play click event
  8. $('#play_button').click(function() {
  9. $('#play_button').unbind('click');
  10.  
  11. //make button unclickable while game is in play
  12. //add animation to the reels
  13. $('#reel_one').addClass('reelOneAnimation');
  14. $('#reel_two').addClass('reelTwoAnimation');
  15. $('#reel_three').addClass('reelThreeAnimation');
  16. //Time out for reel one
  17. setTimeout(function() {
  18.  
  19. $('.reelOneAnimation').css(
  20. //set background position by applying randomReelOne value to the reelPosition array.
  21. 'background-position', '0 ' +randomReelOne+ 'px'
  22. ).removeClass('reelOneAnimation');
  23. }, 1000);
  24.  
  25. //Time out for reel two
  26. setTimeout(function() {
  27. $('.reelTwoAnimation').css(
  28. //set background position by applying randomReelTwo value to the reelPosition array.
  29. 'background-position', '0 ' +randomReelOne + 'px'
  30. ).removeClass('reelTwoAnimation');
  31. }, 2000);
  32.  
  33. //Time out for reel three and display if user has won or lost
  34. setTimeout(function() {
  35. $('.reelThreeAnimation').css(
  36. //set background position by applying randomReelThree value to the reelPosition array.
  37. 'background-position', '0 ' +randomReelOne + 'px'
  38. ).removeClass('reelThreeAnimation');
  39.  
  40. //Decide what the user has won.
  41. $('.overlay,.form-hover').fadeIn()
  42. $('.form-title').html('恭喜你,“'+reelGift[randomNum]+'”奖已放入您的账户,快来注册领取吧!')
  43. console.log(randomNum,randomReelOne,reelGift[randomNum]);
  44. espressoBarSlot();
  45. }, 4000);
  46.  
  47. });
  48. })();
  49. var num=1;
  50. $('.close').click(function(){
  51. if(num>=3){alert('您的抽奖次数已用尽!');return false;}
  52. num++;
  53. $('.overlay,.form-hover').fadeOut()
  54. })
  55.  
  56. </script>

4.九宫格跑马灯游戏:

  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <meta content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no" name="viewport">
  6. <title>Document</title>
  7. <style>
  8. .luck-0{
  9. background: #ef88ab;
  10. }
  11. .luck-1{
  12. background: #e578f5;
  13. }
  14. .luck-2{
  15. background: #534bf1;
  16. }
  17. .luck-3{
  18. background: #4bc6f1;
  19. }
  20. .luck-4{
  21. background: #4bf1c1;
  22. }
  23. .luck-5{
  24. background: #aeec2b;
  25. }
  26. .luck-6{
  27. background: #f5f519;
  28. }
  29. .luck-7{
  30. background: #e4820e;
  31. }
  32. #luckStage {
  33. width: 300px;
  34. height: 300px;
  35. margin: 0px auto;
  36. border: 2px solid #f90;
  37. }
  38.  
  39. #luckStage table td {
  40. position: relative;
  41. width: 100px;
  42. height: 100px;
  43. text-align: center;
  44. /* border: 1px #ccc solid; */
  45. font-size: 20px;
  46. }
  47.  
  48. #luckStage table td a {
  49. width: 100px;
  50. height: 100px;
  51. display: block;
  52. background: red;
  53. opacity: .7;
  54. line-height: 100px;
  55. }
  56. #luckStage table td a:hover{
  57. opacity: 1;
  58. }
  59.  
  60. #luckStage table td.active .mask {
  61. display: block;
  62. }
  63.  
  64. .mask {
  65. width: 100%;
  66. height: 100%;
  67. position: absolute;
  68. left: 0;
  69. top: 0;
  70. background: rgba(0, 0, 0, .8);
  71. display: none;
  72. }
  73.  
  74. </style>
  75. </head>
  76.  
  77. <body>
  78. <div id="luckStage">
  79. <table border="0" cellpadding="0" cellspacing="0">
  80. <tr>
  81. <td class="luck-cell luck-0">0
  82. <div class="mask"></div>
  83. </td>
  84. <td class="luck-cell luck-1">1
  85. <div class="mask"></div>
  86. </td>
  87. <td class="luck-cell luck-2">2
  88. <div class="mask"></div>
  89. </td>
  90. </tr>
  91. <tr>
  92. <td class="luck-cell luck-7">7
  93. <div class="mask"></div>
  94. </td>
  95. <td>
  96. <a href="javascript:;" id="btn-start">click</a>
  97. </td>
  98. <td class="luck-cell luck-3">3
  99. <div class="mask"></div>
  100. </td>
  101. </tr>
  102. <tr>
  103. <td class="luck-cell luck-6">6
  104. <div class="mask"></div>
  105. </td>
  106. <td class="luck-cell luck-5">5
  107. <div class="mask"></div>
  108. </td>
  109. <td class="luck-cell luck-4">4
  110. <div class="mask"></div>
  111. </td>
  112. </tr>
  113. </table>
  114. </div>
  115. <script type="text/javascript" src="http://cdn.bootcss.com/jquery/3.1.0/jquery.min.js"></script>
  116. <script>
  117. //main js
  118. function random(n, m){
  119. var c = m-n+1;
  120. return Math.floor(Math.random() * c + n);
  121. }
  122.  
  123. function Luck(id) {
  124. this.index = -1; //当前位置索引
  125. this.cells = 0; //总共有多少个位置
  126. this.timer = null; //定时器id
  127. this.speed = 120; //初始转动速度
  128. this.times = 0; //转动次数
  129. this.baseTimes = random(80, 120); //至少转动次数
  130. this.prize = random(0, 7); //中奖位置
  131. this.init(id);
  132. }
  133. Luck.prototype = {
  134. init: function(id) {
  135. if (!id) {
  136. throw new Error("params id is null, this is should has a id!")
  137. }
  138. this.obj = $("#" + id);
  139. this.cells = this.obj.find(".luck-cell").length;
  140. this.obj.find(".luck-" + this.index).addClass("active");
  141. },
  142. clear: function (){
  143. this.speed = 20;
  144. this.times = 0;
  145. this.baseTimes = random(80, 100);
  146. this.prize = random(0, 7);
  147. },
  148. setActive: function() {
  149. var index = this.index;
  150. var cells = this.cells;
  151. var obj = this.obj;
  152. obj.find(".luck-" + index).removeClass("active");
  153. index += 1;
  154. if (index > cells - 1) {
  155. index = 0;
  156. };
  157. obj.find(".luck-" + index).addClass("active");
  158. this.index = index;
  159. },
  160. run: function(callback) {
  161. this.times += 1;
  162. this.setActive();
  163.  
  164. if (this.times > this.baseTimes+8 && this.prize == this.index) {
  165. clearTimeout(this.timer);
  166. this.clear();
  167. typeof callback == 'function' && callback();
  168. } else {
  169. if(this.times < this.baseTimes){
  170. this.speed -= 5;
  171. }else{
  172. this.speed += 25;
  173. }
  174. if(this.speed < 20){
  175. this.speed = 20;
  176. }
  177. this.timer = setTimeout(this.run.bind(this, callback), this.speed);
  178. }
  179. }
  180. }
  181. var myLuck = new Luck("luckStage");
  182. var clicked = false;
  183. $("#btn-start").on("click", function (){
  184. if(clicked){
  185. return ;
  186. }
  187. clicked = true;
  188. myLuck.run(function (){
  189. clicked = false;
  190. });
  191. })
  192. </script>
  193. </body>
  194.  
  195. </html>

Javascript返回顶部和砸金蛋,跑马灯等游戏代码实现的更多相关文章

  1. javascript返回顶部几种代码总结

    纯js代码 /** * 回到页面顶部 * @param acceleration 加速度 * @param time 时间间隔 (毫秒) **/ function goTop(acceleration ...

  2. javascript返回顶部插件+源码

    javascript插件->returnTop.js: /* ** 插件名称returnTop.js ** 调用返回头部单例参数说明 ** 调用方式:turn.init(ele,speed); ...

  3. JavaScript返回顶部特效

    样式: <style type="text/css"> /*返回顶部特效*/ a { border: none; text-decoration: none; outl ...

  4. 写一个JavaScript“返回顶部”功能

    在web页面中,如果页面较高,为了方便用户快速地返回顶部,都会添加一个返回顶部按钮. 效果演示可以查看本页.如果页面有滚动高度,右下角就会有一个含有“返回顶部”字样的黑色背景半透明的小条条.点击这里“ ...

  5. Javascript返回顶部

    控制按钮下拉到达一定距离时显示,返回顶层时消失,用JS中的延时定时器来模拟滚动条效果 <script type="text/javascript"> window.on ...

  6. javascript 返回顶部

    <style> #linGoTopBtn {    POSITION: fixed; TEXT-ALIGN: center; LINE-HEIGHT: 30px; WIDTH: 30px; ...

  7. vue制作滚动条幅-跑马灯效果实例代码

    <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title> ...

  8. JavaScript “跑马灯”抽奖活动代码解析与优化(二)

    既然是要编写插件.那么叫做"插件"的东西肯定是具有的某些特征能够满足我们平时开发的需求或者是提高我们的开发效率.那么叫做插件的东西应该具有哪些基本特征呢?让我们来总结一下: 1.J ...

  9. 【JavaScript&jQuery】返回顶部

    <!doctype html> <html> <head> <meta charset="utf-8"> <title> ...

  10. gotop(返回顶部)

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

随机推荐

  1. #差分约束系统#CodeChef Digit Matrix&洛谷 7515 [省选联考 2021 A 卷] 矩阵游戏

    洛谷传送门 DGMATRIX 分析 先任意构造出一个不一定满足值域的矩阵,现在只需要满足值域就可以了. 可以发现,给一行或一列依次加一减一2*2矩阵的和仍然不变,并且如果有解一定能构造出一组方案. 因 ...

  2. 关于pwn题的栈平衡中ret的作用

    以nssctf里的where_is_my_shell为例 题目提供了一个system函数,和一个buf数组.数组的栈空间如图所示,这里不讨论怎么解题,只说明payload里的ret的作用. 假设没有r ...

  3. 【直播回顾】OpenHarmony知识赋能第五期第二课——如何成为社区贡献达人

    4月28日晚上19点,知识赋能第五期第二节课<如何成为OpenHarmony社区贡献达人?>,在OpenHarmony开发者成长计划社群内成功举行. 本期课程,由华为社区运营专家祝尚元主讲 ...

  4. C#中操作Excel

    在GIS数据处理中,经常遇到与Excel的交互,这里进行简单的总结. Excel行列号就像是编辑中的二维数据组,操作Excel相当于操作二维数组.遍历.循环.取值.赋值-- 1.添加引用 添加引用也有 ...

  5. 聚焦AI新技术,HMS Core机器学习服务为移动应用智能化注入新动力

    近年来,以机器学习为代表的人工智能技术(以下简称AI技术)蓬勃发展.新算法层出不穷,开发出的图像识别.自然语言.活体检测等能力令智能化的未来生活不再遥不可及.同时,这些AI技术正持续演化和发展,数据和 ...

  6. MindSpore自动微分小技巧

    技术背景 基于链式法则的自动微分技术,是大多数深度学习框架中所支持的核心功能,旨在更加快速的进行梯度计算,并且可以绕开符号微分的表达式爆炸问题和手动微分的困难推导问题.本文主要基于MindSpore框 ...

  7. 进阶 stack smashing--canary 报错利用 && environ泄露栈地址

    进阶 stack smashing--canary 报错利用 && environ泄露栈地址 这部分是对进阶stack smashing的使用,以及对 environ的认识,我们可以看 ...

  8. 学习Source Generators之了解Source Generators的应用场景

    前面的文章我们都初步学习了Source Generators的使用方式以及做了一些简单的代码生成工具. 但是Source Generators除了做自动代码生成之外,还能有别的应用场景,本文来了解一下 ...

  9. Solon 的事务管理工具类(TranUtils)

    Solon 在编码上,是强调注解与手写并重的一个风格.它有个 @Tran 注解,用于事务管理(可以参考:<事务的全局控制及应用>).这里,主要是讲讲它的手动处理工具类 TranUtils. ...

  10. Linux系统中查找文件的方法

    -name 必须用到的选项.表明要求系统按照文件名查找. 一般格式:find /(dirname) -name filename 具体文件名查找法: 如果知道了某个文件的文件名,而不知道这个文件放到哪 ...