123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta content="yes" name="apple-mobile-web-app-capable">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0,minimum-scale=1.0,user-scalable=0" />
- <title>淘宝红包</title>
- <link rel="stylesheet" type="text/css" href="public.css"/>
- <script type="text/javascript" src="public/jquery-2.1.0.js"></script>
- <script type="text/javascript">
- document.documentElement.style.fontSize = 100 * (document.documentElement.clientWidth/375) + "px";
- window.onresize = function(){
- document.documentElement.style.fontSize = 100 * (document.documentElement.clientWidth/375) + "px";
- }
-
- </script>
- <style type="text/css">
- body{width: 100%;min-height: 100vh;background: #dd3938;}
- .container{width: 100%;min-height: 100vh;background: url(https://kx-youhuiquan.oss-cn-beijing.aliyuncs.com/guoqing/guoqingBgRedEnvelopes.png) no-repeat;background-size:100% ;}
- button{display:block;width:1.735rem;height: 0.4rem;background: url(https://kx-youhuiquan.oss-cn-beijing.aliyuncs.com/guoqing/bg_button_index03.png) no-repeat;background-size:100% ;position: absolute;left: 0;right: 0;top: 3.7rem;margin: auto;}
- #copy_1,#copy_2,#taokouling{
- position: absolute;
- left: -1000rem;
- }
- .alert-info {
- position: absolute;
- top: 1.74rem;
- right: 0;
- left: 0;
- bottom: 0;
- text-align: center;
- }
-
- .alert-info p {
- display: inline-block;
- height: 0.38rem;
- color: #fff;
- font-size: 0.14rem;
- line-height: 0.38rem;
- padding: 0 0.10rem;
- background-color: rgba(0, 0, 0, 0.7);
- border-radius: 5px;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <input id="copy_1" type="text" readOnly="true" value=""/>
- <div id="copy_2"></div>
- <text id="taokouling">¥6pJfnNwEQ¥</text>
- <button class="button" onclick="copyPassword()"></button>
- </div>
- <div class="alert-info" style="display: none;">
- <!-- tip提示,3s后消失 -->
- <p></p>
- </div>
- </body>
- </html>
- <script type="text/javascript">
-
- var tkl = '¥6pJfnNwEQ¥';
- $().ready(function() {
- todayTbkPassword()
- })
- //获取淘口令
- function todayTbkPassword () {
- $.ajax({
- type:"post",
- url:"/api/v2/goods/todayTbkPassword",
- typeData:'json',
- success: function (res){
- if(res && res.errno == 0){
- if(res.rst.password){
- tkl = res.rst.password;
- }
- }
- $("#taokouling").text(tkl);
- }
- });
- }
- function copyPassword() {
- var data=document.getElementById("taokouling").innerHTML;
- copy_2.innerHTML = data;
- copy_1.value = data;
- if (navigator.userAgent.match(/(iPhone|iPod|iPad);?/i)) {
- //区分iPhone设备
- window.getSelection().removeAllRanges();//这段代码必须放在前面否则无效
- var Url2=document.getElementById("copy_2");//要复制文字的节点
- var range = document.createRange();
- // 选中需要复制的节点
- range.selectNode(Url2);
- // 执行选中元素
- window.getSelection().addRange(range);
- // 执行 copy 操作
- var successful = document.execCommand('copy');
- // 移除选中的元素
- window.getSelection().removeAllRanges();
- }else{
- var Url2=document.getElementById("copy_1");//要复制文字的节点
- Url2.select(); // 选择对象
- document.execCommand("Copy"); // 执行浏览器复制命令
- }
- showMsg('复制成功')
- }
- //提示弹框
- function showMsg(msg) {
- var msgBox = $('.alert-info');
- msgBox.children('p').text(msg);
- msgBox.show();
- setTimeout(function() {
- msgBox.hide();
- }, 3000);
- }
- </script>
|