12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>不中奖</title>
- <!--#include virtual="/h5v2/htm2/head.htm" -->
- <style type="text/css">
- body {
- background-image: url(img/noPrizePopup.jpg);
- }
-
- .btn_focus_btn {
- border: 3px solid #fff;
- border-radius: 20px;
- box-shadow: 0px 0px 10px #3794e2;
- }
- </style>
- </head>
- <body>
- <div id="buttonDiv"></div>
- <!--#include virtual="/h5v2/htm2/foot.htm" -->
- <!--#include virtual="activity_cfg.htm" -->
- <script type="text/javascript">
- var linkImage = CONFIG.SPACER; //透明图片
- var buttons = []; //按钮数组
- var act_id = ACTIVITY_CFG.ACT_ID,
- act_code = ACTIVITY_CFG.ACT_CODE; //活动id及code
- var dudu_is_vip = PageH5.cookie.get('activity_is_vip');
- var uid = PageH5.cookie.get('activity_userid');
- function init() {
- var html = '';
- html += '<div style="position:absolute;left: 580px;top:644px;"><img id="btn" src="./img/btn_back.png"/></div>';
- G('buttonDiv').innerHTML = html;
- buttons.push({
- id: 'btn',
- action: back,
- left: '',
- right: '',
- up: '',
- down: '',
- focusClass: 'btn',
- });
- PageH5.btn.init('btn', buttons, '', true);
- }
- function back() {
- location.href = './index.html?f=' + PageH5.getParam('f') + '&titleIdx=' + PageH5.getParam('titleIdx');
- }
- window.onload = function() {
- init();
- }
- </script>
- </body>
- </html>
|