12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!DOCTYPE html>
- <html lang="zh">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title></title>
- </head>
- <style>
- * {
- margin: 0;
- padding: 0;
- }
- </style>
- <script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
- <script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.3.2.js"></script>
- <body>
- <div style="position: relative;">
- <iframe id="myiframe" src="" style="width: 100%;height: 100vh;" frameborder="0"></iframe>
- <div style="position: absolute;top: 140px;right: 10px;border-radius: 100px;background-color: rgba(256,256,256,0.3);backdrop-filter: saturate(100%) blur(10px);-webkit-backdrop-filter: saturate(100%) blur(10px);padding: 1px 5px;display: flex;flex-direction: column;align-items: center;">
- <img style="width:30px;height:30px;margin:10px 0;" onclick="chongzhi()" src="./img/chongzhi.png" alt="">
- <img style="width:30px;height:30px;margin:10px 0;" onclick="back()" src="./img/rizhao.png" alt="">
- <img style="width:30px;height:30px;margin:10px 0;" src="./img/kefu.png" alt="">
- <img style="width:30px;height:30px;margin:10px 0;" src="./img/share.png" alt="">
- </div>
- </div>
- </body>
- <script>
- function getQueryVariable(variable) {
- var query = window.location.search.substring(1);
- var vars = query.split("&");
- for (var i = 0; i < vars.length; i++) {
- var pair = vars[i].split("=");
- if (pair[0] == variable) { return pair[1]; }
- }
- return (false);
- }
- function chongzhi() {
- $("#myiframe")[0].contentWindow.ResetClick();
- }
- function back() {
- wx.miniProgram.navigateBack()
- }
- if (getQueryVariable('url')) {
- $('#myiframe').attr('src', decodeURIComponent(getQueryVariable('url')) + '?oss=' + encodeURIComponent('https://nikeshang.oss-cn-hangzhou.aliyuncs.com/shuxiang/sun/Build'));
- }
- </script>
- </html>
|