events_turntable.html 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. <{include file="header.html"}>
  2. <{include file="nav.html"}>
  3. <!--公用标题居中显示-->
  4. <{include file="common_header.html"}>
  5. <{include file="events_top.html"}>
  6. <{include file="events_infos.html"}>
  7. <!--遮罩层-->
  8. <div class="a_cover"></div>
  9. <!--====================提示层样式5种,分别选择使用 begin===========================-->
  10. <!--通用文字提示层-->
  11. <div class="v_tips_box" id="vtips_1">
  12. <div class="v_close_btn"></div>
  13. <p>{{message}}</p>
  14. </div>
  15. <!--通用文字提示层+按钮-->
  16. <div class="v_tips_box v_tips_box2" id="vtips_2">
  17. <div class="v_close_btn"></div>
  18. <p>{{message}}</p>
  19. <p><a href="<{$listUrl}>" class="submit_btn_style">返回列表</a></p>
  20. </div>
  21. <!--活动结束提示+按钮-->
  22. <div class="v_tips_box v_tips_box2" id="vtips_3">
  23. <div class="v_close_btn"></div>
  24. <p>活动已结束!</p>
  25. <p><a href="<{$listUrl}>" class="submit_btn_style">其它活动</a></p>
  26. </div>
  27. <!--领取奖品提示层+按钮-->
  28. <div class="v_tips_box v_tips_box3" id="vtips_4">
  29. <div class="v_close_btn close_btn_href" url="<{$giftsUrl}>"></div>
  30. <div class="pro_list_box pro_list_box2 pro_list_box3">
  31. <dl>
  32. <dt>
  33. <img src="<{$web_cfg.cdn}>/public/static/img/item_img.jpg">
  34. <p class="img_cover" style="background-image:url({{img_url}});"></p>
  35. </dt>
  36. <dd>
  37. <p class="pro_name">{{prize_name}}</p>
  38. </dd>
  39. </dl>
  40. </div>
  41. <p class="v_gray">请点击领取奖品,并填写配送地址</p>
  42. <p><a class="submit_btn_style" href="<{$web_cfg.domain}>/?c=Express&lottery_data_id={{lottery_data_id}}">领取奖品</a></p>
  43. </div>
  44. <!--查看奖品提示层+按钮-->
  45. <div class="v_tips_box v_tips_box3" id="vtips_5">
  46. <div class="v_close_btn close_btn_href" url="<{$giftsUrl}>"></div>
  47. <div class="pro_list_box tips_list_box pro_list_box3">
  48. <dl>
  49. <dt><img src="{{img_url}}"></dt>
  50. <dd>
  51. <p class="pro_name">{{prize_name}}</p>
  52. <p class="pro_num">{{virtual_data}}</p>
  53. </dd>
  54. </dl>
  55. </div>
  56. <p><a class="submit_btn_style" href="<{$giftsUrl}>">查看奖品</a></p>
  57. </div>
  58. <!--====================提示层样式5种,分别选择使用 end===========================-->
  59. <!-- 显示 -->
  60. <div class="v_tips_box v_tips_box3" id="ks-tips"></div>
  61. <script>
  62. $("#award_btn").on('click', function(){
  63. var time = 2000;//设置抽奖loading时间
  64. $("#luck_show").hide();
  65. $("#luck_loading").show()/*.delay(time).fadeOut(0)*/;
  66. //$(".loading_img").css({height:"0px"}).animate({height:"70px"},time);
  67. });
  68. //通用弹出提示层
  69. function v_tips_show(){
  70. $(".v_tips_box").fadeIn(200);
  71. $(".a_cover").fadeIn(200);
  72. }
  73. //点击关闭提示层---通用
  74. $(".v_close_btn").live('click', function() {
  75. $(".v_tips_box").fadeOut(.2);
  76. $(".a_cover").fadeOut(.2);
  77. });
  78. // 点击关闭按钮
  79. $(".close_btn_href").live('click', function() {
  80. var url = $(this).attr('url');
  81. location.href = url;
  82. });
  83. KISSY.use('node, io, xtemplate, anim', function (S, Node, IO, XTemplate, Anim) {
  84. var $ = S.all;
  85. //视频自适应
  86. var screenWidth = $(window).width();
  87. var baseWidth = 510;
  88. var video_scale = screenWidth / baseWidth;
  89. $(".video_iframe").each(function () {
  90. var new_width = $(this).width() * video_scale;
  91. $(this).width(new_width - 20);
  92. var new_height = $(this).height() * video_scale;
  93. $(this).height(new_height - 20);
  94. });
  95. var drawResult = {};
  96. var drawAnim = new Anim(".loading_img", {'height':'70px'}, {
  97. duration: 2,
  98. complete: function () {
  99. var id = setInterval(function () {
  100. if (!S.isUndefined(drawResult.ok)) {
  101. run_result_anim(drawResult);
  102. clearInterval(id);
  103. }
  104. }, 100);
  105. }
  106. });
  107. //点击抽奖按钮切换抽奖效果
  108. $("#award_btn").on('click', function () {
  109. drawAnim.run();
  110. new IO({
  111. type: "get"
  112. , url: '<{$web_cfg.domain}>/?c=EventsTurntable&a=Rotation'
  113. , data: {events_id: '<{$turntableData.events.id}>'}
  114. , success: function (data) {
  115. drawResult = data;
  116. return false;
  117. }
  118. , error: function (NULL, textStatus) {
  119. alert("请求服务器失败,原因:"+textStatus);
  120. }
  121. , dataType: "json"
  122. });
  123. });
  124. function run_result_anim(data) {
  125. if (data.ok) { //ok
  126. if(data.msg == 'NoPrize'){
  127. $("#luck_loading").hide();
  128. $("#luck_result").show();
  129. } else {
  130. if(data.msg.express == 1){//领奖
  131. var tpl = $("#vtips_4").html();
  132. } else {//查看奖品
  133. var tpl = $("#vtips_5").html();
  134. }
  135. var render = new XTemplate(tpl).render(data.msg);
  136. $("#ks-tips").html(render).fadeIn(.2);
  137. $(".a_cover").fadeIn(.2);
  138. }
  139. } else {
  140. if(data.msg == 'NoPrize'){
  141. $("#luck_loading").hide();
  142. $("#luck_result").show();
  143. } else {
  144. var tpl = $("#vtips_2").html();
  145. var render = new XTemplate(tpl).render({'message':data.msg});
  146. $("#ks-tips").html(render).fadeIn(.2);
  147. $(".a_cover").fadeIn(.2);
  148. $(".v_close_btn").on('click', function() {
  149. $(".v_tips_box").hide();
  150. $(".a_cover").hide();
  151. });
  152. }
  153. }
  154. }
  155. });
  156. //有产品列表时添加整体body背景色
  157. $(body).addClass("bg_white");
  158. </script>
  159. <{include file="bottom.html"}>