Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

libai / footsen

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Commit cc4108e0 authored 3 years ago by agan's avatar agan
Browse files
Options
  • Browse Files
  • Download
  • Email Patches
  • Plain Diff

开放tf渠道

parent 5805edcc
Show whitespace changes
Inline Side-by-side
Showing with 41 additions and 15 deletions
  • css/iosNew.css
  • iosnew.html
css/iosNew.css
View file @ cc4108e0
...@@ -71,7 +71,7 @@ ...@@ -71,7 +71,7 @@
bottom: 4.16rem; bottom: 4.16rem;
} }
.iosDown1 { .iosDown2 {
background: url(../img/new2/dbutton1.png) no-repeat; background: url(../img/new2/dbutton1.png) no-repeat;
background-size: 100% 100%; background-size: 100% 100%;
width: 7.173rem; width: 7.173rem;
...@@ -85,6 +85,20 @@ ...@@ -85,6 +85,20 @@
bottom: 2.32rem; bottom: 2.32rem;
margin-left: -3.586rem; margin-left: -3.586rem;
} }
.iosDown1 {
background: url(../img/new2/button2.png) no-repeat;
background-size: 100% 100%;
width: 7.173rem;
height: 1.333rem;
line-height: 1.333rem;
font-size: 0.64rem;
color: #D82F66;
text-align: center;
position: absolute;
left: 50%;
bottom: 5.32rem;
margin-left: -3.586rem;
}
.guide1{ .guide1{
width: 2rem; width: 2rem;
font-size: 0.373rem; font-size: 0.373rem;
...@@ -105,20 +119,7 @@ ...@@ -105,20 +119,7 @@
position: relative; position: relative;
padding-bottom: 2.133rem; padding-bottom: 2.133rem;
} }
.iosDown2 {
background: url(../img/new2/dbutton2.png) no-repeat;
background-size: 100% 100%;
width: 7.173rem;
height: 1.333rem;
line-height: 1.333rem;
font-size: 0.64rem;
color: #D82F66;
text-align: center;
position: absolute;
left: 50%;
bottom: 5.32rem;
margin-left: -3.586rem;
}
.guide2{ .guide2{
width: 2rem; width: 2rem;
font-size: 0.373rem; font-size: 0.373rem;
......
This diff is collapsed. Click to expand it.
iosnew.html
View file @ cc4108e0
...@@ -60,6 +60,10 @@ ...@@ -60,6 +60,10 @@
} }
}); });
console.log(params); console.log(params);
$('.iosDown1').on('click', function () {
copyText(data.icid);
window.location.href = 'https://tf.kekouyun.vip/app/Footseen';
})
// $(".iosDown1").on("click", function () { // $(".iosDown1").on("click", function () {
// setTimeout(function () { // setTimeout(function () {
// // window.location.href = 'https://apps.apple.com/us/app/footseen-random-video-chat-app/id1491129400'; // // window.location.href = 'https://apps.apple.com/us/app/footseen-random-video-chat-app/id1491129400';
...@@ -102,6 +106,26 @@ ...@@ -102,6 +106,26 @@
} }
return theRequest; return theRequest;
} }
//複製到剪切板
function copyText(text) {
var textarea = document.createElement("textarea");
var currentFocus = document.activeElement;
document.body.appendChild(textarea);
textarea.value = text;
textarea.focus();
if (textarea.setSelectionRange)
textarea.setSelectionRange(0, textarea.value.length);
else
textarea.select();
try {
var flag = document.execCommand("copy");
} catch (eo) {
var flag = false;
}
document.body.removeChild(textarea);
currentFocus.focus();
return flag;
}
</script> </script>
</html> </html>
\ No newline at end of file
This diff is collapsed. Click to expand it.
  • Write
  • Preview
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment