123 lines
5.3 KiB
HTML
123 lines
5.3 KiB
HTML
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>个人首页</title>
|
||
<meta name="renderer" content="webkit">
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||
<meta name="viewport" content="width=device-width,user-scalable=yes, minimum-scale=0.4, initial-scale=0.8,target-densitydpi=low-dpi" />
|
||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
|
||
<link rel="stylesheet" href="/static/agent/css/font.css">
|
||
<link rel="stylesheet" href="/static/agent/css/xadmin.css">
|
||
<script type="text/javascript" src="/static/agent/js/jquery.min.js"></script>
|
||
<script type="text/javascript" src="/static/agent/js/jquery.qrcode.min.js"></script>
|
||
<style type="text/css">
|
||
.layui-field-box{
|
||
min-width:1280px;
|
||
padding:0 5%;
|
||
}
|
||
.layui-field-box section{
|
||
margin-bottom:20px;
|
||
min-width:495px;
|
||
}
|
||
.layui-field-box section .item-box{
|
||
width:40%;
|
||
background:#F2F2F2;
|
||
border-radius:5px;
|
||
position:relative;
|
||
display:inline-block;
|
||
}
|
||
.layui-field-box section .item-box.url-box{
|
||
border-top:3px solid #f39c12;
|
||
position:relative;
|
||
top:-125px;
|
||
left:5%;
|
||
}
|
||
.layui-field-box section .item-box .item-title{
|
||
height:40px;
|
||
text-align: center;
|
||
line-height:40px;
|
||
font-size:18px;
|
||
border-bottom:1px solid #ccc;
|
||
}
|
||
.layui-field-box section .item-box .item-qrcode #qrcode{
|
||
width: 205px;
|
||
height: 205px;
|
||
margin: 10px auto;
|
||
position: relative;
|
||
background: rgb(250, 250, 250);
|
||
padding: 10px;
|
||
border-radius: 5px;
|
||
opacity: 1;
|
||
}
|
||
.layui-field-box section .item-box .item-qrcode #qrcode canvas{
|
||
width: 205px;
|
||
}
|
||
.layui-field-box section .item-box .item-message{
|
||
padding:10px;
|
||
font-size:15px;
|
||
}
|
||
.layui-field-box section .item-box .item-message p{
|
||
padding:10px 0;
|
||
}
|
||
.layui-field-box section .item-box .item-url {
|
||
padding:10px;
|
||
width:470px;
|
||
}
|
||
.layui-field-box section .item-box .item-url input{
|
||
width:450px;
|
||
padding:10px;
|
||
font-size:15px;
|
||
border:1px solid #ccc;
|
||
background:#F2F2F2;
|
||
border-radius:5px;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body class="iframeClass scroll-wrapper">
|
||
<div class="x-body layui-anim layui-anim-up" style="overflow-x: scroll;">
|
||
<img src="{$Think.LOGO_PATH}" id="logo" style="position:absolute;top:-933px;left:-1000px;">
|
||
<fieldset class="layui-elem-field">
|
||
<legend>Line投推广</legend>
|
||
<div class="layui-field-box qrcode-box" >
|
||
<section>
|
||
<div class="item-box" style="border-top:3px solid #00a65a;">
|
||
<div class="item-title">
|
||
<span>我的专用Line投推广二维码</span>
|
||
</div>
|
||
<div class="item-qrcode" >
|
||
<div id="qrcode"></div>
|
||
</div>
|
||
<div class="item-message">
|
||
<p>我的推广链接:<?=$marketingUrl; ?></p>
|
||
<p>使用方法:在上面的二维码图片上点击右键,选择“图片另存为”,保存二维码图片。</p>
|
||
<p style="color:red;">说明:用户通过此二维码进行游戏即可成为当前代理名下玩家。</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="item-box url-box" style="display:none;">
|
||
<div class="item-title">
|
||
<span>我的专用推广链接</span>
|
||
</div>
|
||
<div class="item-url">
|
||
<input type="text" value="{$marketingUrl}" readonly>
|
||
</div>
|
||
<div class="item-message">
|
||
<p>使用方法:点击上面的输入框,按下Ctrl+C复制,或者点击鼠标右键后选择“复制”。</p>
|
||
<p style="color:red;">说明:用户通过此链接访问游戏网站可注册成为当前代理名下玩家。请勿担心玩家将此链接后的代理ID删除后注册,玩家一旦删除代理ID,则无法成功注册。</p>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
</div>
|
||
</fieldset>
|
||
</div>
|
||
|
||
<input type="hidden" id="marketingUrl" value="{$marketingUrl}">
|
||
<script type="text/javascript">
|
||
window.onload=function(){
|
||
var marketingUrl = $('#marketingUrl').val();
|
||
$('#qrcode').qrcode(marketingUrl);
|
||
}
|
||
</script>
|
||
</body>
|
||
</html> |