123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <!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" />
- <link rel="stylesheet" type="text/css" href="../common/reset.css"/>
- <script type="text/javascript" src="../common/jquery-2.1.0.js"></script>
- <title>支付宝红包</title>
- <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: #FFC495;
- }
- .container{
- background: url(img/alipayBg.png) no-repeat;
- background-size:100% ;
- height:11.01rem;
- width: 100%;
- position: relative;
- }
- .searchCode{
- position: absolute;
- font-size:0.22rem;
- color:rgba(255,255,255,1);
- line-height:0.3rem;
- letter-spacing:0.02rem;
- top: 2.42rem;
- left: 0;
- right: 0;
- margin: auto;
- text-align: center;
- }
- .openAlipayButton{
- width: 2.1rem;
- height: 0.54rem;
- background: url(img/alipayButton.png) no-repeat;
- background-size:100% ;
- position: absolute;
- top: 4.3rem;
- left: 0;
- right: 0;
- margin: auto;
- border: none;
- }
- #copy_1,#copy_2{
- position: absolute;
- left: -1000rem;
- }
- .alert-info {
- position: fixed;
- top: 3.3rem;
- 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>
- <input id="copy_1" type="text" readOnly="true" value=""/>
- <div id="copy_2"></div>
-
- <div class="container">
- <div class="searchCode">627364862</div>
- <button class="openAlipayButton" onclick="copyEvent()"></button>
- </div>
- <div class="alert-info" style="display: none;">
- <!-- tip提示,3s后消失 -->
- <p></p>
- </div>
- </body>
- </html>
- <script type="text/javascript">
-
- function showMsg(msg) {
- var msgBox = document.getElementsByClassName('alert-info')[0];
- msgBox.children[0].innerText = msg;
- msgBox.style.display="block";
- setTimeout(function() {
- msgBox.style.display="none";
- }, 1500);
- }
- function copyEvent () {
- var data='627364862';
- 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('复制成功,打来支付宝领取!')//toast
- }
- </script>
|