mirror of
https://github.com/ivabus/www
synced 2024-11-13 08:15:14 +03:00
Converted clipboard copy cta to partial
This commit is contained in:
parent
ff553dd5b1
commit
8d23fe7834
|
@ -41,7 +41,7 @@
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<div class="full-width-cta-container">
|
<div class="full-width-cta-container">
|
||||||
{{- partial "full-width-cta.html" . -}}
|
{{- partial "clipboard-copy.html" . -}}
|
||||||
</div>
|
</div>
|
||||||
<div class="hero-bottom">
|
<div class="hero-bottom">
|
||||||
|
|
||||||
|
|
|
@ -24,174 +24,7 @@
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<hr>
|
{{- partial "clipboard-copy.html" -}}
|
||||||
<div class="row button-container" onclick="myFunction()" style="display:flex; justify-content:space-between;">
|
|
||||||
<input class="one-liner" type="text" value="$ sh <(curl tea.xyz) install {{- .Title -}}" id="myInput" readonly>
|
|
||||||
|
|
||||||
<!-- The button used to copy the text -->
|
|
||||||
<button class="clipboard-copy" id="copy-icon" onclick="myFunction()" data-bs-toggle="modal" data-bs-target="#exampleModal"><u>copy</u></button>
|
|
||||||
</div>
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
<section class="animated-25" id="reveal" style="display:none;">
|
|
||||||
<div class="container">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col">
|
|
||||||
<p class="text-center">Have you <a href="#">authenticated with tea</a>?</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
|
|
||||||
#reveal{
|
|
||||||
transition: 0.2s linear;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width: 768px) {
|
|
||||||
|
|
||||||
.one-liner{
|
|
||||||
width: 85%;
|
|
||||||
padding: 2.455vw 4.185vw;
|
|
||||||
border-radius: 0px;
|
|
||||||
border: none;
|
|
||||||
background-color: #1a1a1a !important;
|
|
||||||
font-family: "pp-neue-machina";
|
|
||||||
color:#ffffff;
|
|
||||||
font-size: 2vw;
|
|
||||||
border-left: 2px solid #949494;
|
|
||||||
}
|
|
||||||
|
|
||||||
.one-liner:focus{
|
|
||||||
border:none;
|
|
||||||
outline: none;
|
|
||||||
border-left: 2px solid #949494;
|
|
||||||
}
|
|
||||||
|
|
||||||
.clipboard-copy{
|
|
||||||
height: 8.371vw;
|
|
||||||
width: 14%;
|
|
||||||
font-family: "pp-neue-machina";
|
|
||||||
color:#ffffff;
|
|
||||||
font-size: 2.1vw;
|
|
||||||
float:right !important;
|
|
||||||
background-color: #1a1a1a !important;
|
|
||||||
border: none;
|
|
||||||
border-right: 2px solid #949494;
|
|
||||||
transition: 0.2s linear;
|
|
||||||
}
|
|
||||||
|
|
||||||
.clipboard-copy:hover{
|
|
||||||
background-color: #00ffd0 !important;
|
|
||||||
color: #1a1a1a !important;
|
|
||||||
box-shadow: inset 0vw 0vw 0vw 0.558vw #1a1a1a !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width: 576px) and (max-width: 768px) {
|
|
||||||
|
|
||||||
.one-liner{
|
|
||||||
width: 85%;
|
|
||||||
padding: 5vw 4vw;
|
|
||||||
border-radius: 0px;
|
|
||||||
border: none;
|
|
||||||
background-color: #1a1a1a !important;
|
|
||||||
font-family: "pp-neue-machina";
|
|
||||||
color:#4d4d4d;
|
|
||||||
font-size: 3.5vw;
|
|
||||||
border-left: 2px solid #949494;
|
|
||||||
border-right: 2px solid #949494;
|
|
||||||
}
|
|
||||||
|
|
||||||
.one-liner:focus{
|
|
||||||
border:none;
|
|
||||||
outline: none;
|
|
||||||
border-left: 2px solid #949494;
|
|
||||||
border-right: 2px solid #949494;
|
|
||||||
}
|
|
||||||
|
|
||||||
.clipboard-copy{
|
|
||||||
padding: 5vw 4vw;
|
|
||||||
width: 14%;
|
|
||||||
font-family: "pp-neue-machina";
|
|
||||||
color:#4d4d4d;
|
|
||||||
font-size: 3.5vw;
|
|
||||||
float:right;
|
|
||||||
background-color: #1a1a1a !important;
|
|
||||||
border: none;
|
|
||||||
border-right: 2px solid #949494;
|
|
||||||
transition: 0.2s linear;
|
|
||||||
}
|
|
||||||
|
|
||||||
.clipboard-copy:hover{
|
|
||||||
background-color: #00ffd0 !important;
|
|
||||||
color: #1a1a1a !important;
|
|
||||||
box-shadow: inset 0vw 0vw 0vw 0.558vw #1a1a1a !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 576px) {
|
|
||||||
|
|
||||||
.one-liner{
|
|
||||||
width: 100%;
|
|
||||||
padding: 7.5vw 7.5vw !important;
|
|
||||||
border-radius: 0px;
|
|
||||||
border: none;
|
|
||||||
background-color: #1a1a1a !important;
|
|
||||||
font-family: "pp-neue-machina";
|
|
||||||
color:#4d4d4d;
|
|
||||||
text-align: center !important;
|
|
||||||
font-size: 4vw;
|
|
||||||
border-left: 2px solid #949494;
|
|
||||||
border-right: 2px solid #949494;
|
|
||||||
}
|
|
||||||
|
|
||||||
.one-liner:focus{
|
|
||||||
border:none;
|
|
||||||
outline: none;
|
|
||||||
border-left: 2px solid #949494;
|
|
||||||
border-right: 2px solid #949494;
|
|
||||||
}
|
|
||||||
|
|
||||||
.clipboard-copy{
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
|
|
||||||
function myFunction() {
|
|
||||||
// Get the text field
|
|
||||||
var copyText = document.getElementById("myInput");
|
|
||||||
|
|
||||||
// Select the text field
|
|
||||||
copyText.select();
|
|
||||||
copyText.setSelectionRange(0, 99999); // For mobile devices
|
|
||||||
|
|
||||||
// Copy the text inside the text field
|
|
||||||
navigator.clipboard.writeText(copyText.value);
|
|
||||||
|
|
||||||
/* Alert the copied text
|
|
||||||
alert("Copied " + copyText.value + " to clipboard");*/
|
|
||||||
|
|
||||||
//Change button text to 'copied'
|
|
||||||
document.getElementById("copy-icon").innerHTML = "copied!";
|
|
||||||
|
|
||||||
// Reveal Auth text
|
|
||||||
if (document.getElementById("reveal").style.display = "none") {
|
|
||||||
document.getElementById("reveal").style.display = "block";
|
|
||||||
} else {
|
|
||||||
document.getElementById("reveal").style.display = "none";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<section class="teal-bg two-boxes">
|
<section class="teal-bg two-boxes">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
|
|
@ -1,52 +1,130 @@
|
||||||
<hr>
|
<hr>
|
||||||
<div class="row button-container">
|
<div class="row button-container" onclick="myFunction()" style="display:flex; justify-content:space-between;">
|
||||||
<input class="one-liner" type="text" value="$ sh <(curl tea.xyz) install {{- .Title -}}" id="myInput" readonly>
|
<input class="one-liner" type="text" value="$ sh <(curl tea.xyz)" id="myInput" readonly>
|
||||||
|
|
||||||
<!-- The button used to copy the text -->
|
<!-- The button used to copy the text -->
|
||||||
<button class="clipboard-copy" onclick="myFunction()" id="copy-icon"><i class="icon-clipboard"></i></button>
|
|
||||||
|
<button class="clipboard-copy" id="copy-icon" onclick="myFunction()" data-bs-toggle="modal" data-bs-target="#exampleModal">copy</button>
|
||||||
</div>
|
</div>
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
|
||||||
.one-liner{
|
.button-container{
|
||||||
width: 85%;
|
background-color: #1a1a1a;
|
||||||
padding: 2.455vw 4.185vw;
|
|
||||||
border-radius: 0px;
|
|
||||||
border: none;
|
|
||||||
background-color: #1a1a1a !important;
|
|
||||||
font-family: "pp-neue-machina";
|
|
||||||
color:#4d4d4d;
|
|
||||||
font-size: 2.1vw;
|
|
||||||
border-left: 2px solid #949494;
|
|
||||||
border-right: 2px solid #949494;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.one-liner:focus{
|
@media only screen and (min-width: 768px) {
|
||||||
border:none;
|
|
||||||
outline: none;
|
.one-liner{
|
||||||
border-left: 2px solid #949494;
|
width: 80%;
|
||||||
border-right: 2px solid #949494;
|
padding: 2.455vw 4.185vw;
|
||||||
|
border-radius: 0px;
|
||||||
|
border: none;
|
||||||
|
background-color: #1a1a1a !important;
|
||||||
|
font-family: "pp-neue-machina";
|
||||||
|
color:#ffffff;
|
||||||
|
font-size: 2vw;
|
||||||
|
border-left: 2px solid #949494;
|
||||||
|
}
|
||||||
|
|
||||||
|
.one-liner:focus{
|
||||||
|
border:none;
|
||||||
|
outline: none;
|
||||||
|
border-left: 2px solid #949494;
|
||||||
|
}
|
||||||
|
|
||||||
|
.clipboard-copy{
|
||||||
|
height: 8.371vw;
|
||||||
|
width: 18%;
|
||||||
|
font-family: "pp-neue-machina";
|
||||||
|
color:#ffffff;
|
||||||
|
font-size: 2.1vw;
|
||||||
|
float:right !important;
|
||||||
|
background-color: #1a1a1a !important;
|
||||||
|
border: none;
|
||||||
|
border-right: 2px solid #949494;
|
||||||
|
transition: 0.2s linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
.clipboard-copy:hover{
|
||||||
|
background-color: #00ffd0 !important;
|
||||||
|
color: #1a1a1a !important;
|
||||||
|
box-shadow: inset 0vw 0vw 0vw 0.558vw #1a1a1a !important;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.clipboard-copy{
|
@media only screen and (min-width: 576px) and (max-width: 768px) {
|
||||||
height: 8.371vw;
|
|
||||||
width: 14%;
|
.one-liner{
|
||||||
font-family: "pp-neue-machina";
|
width: 85%;
|
||||||
color:#4d4d4d;
|
padding: 5vw 4vw;
|
||||||
font-size: 2.1vw;
|
border-radius: 0px;
|
||||||
float:right;
|
border: none;
|
||||||
background-color: #1a1a1a !important;
|
background-color: #1a1a1a !important;
|
||||||
border: none;
|
font-family: "pp-neue-machina";
|
||||||
border-right: 2px solid #949494;
|
color:#4d4d4d;
|
||||||
transition: 0.2s linear;
|
font-size: 3.5vw;
|
||||||
|
border-left: 2px solid #949494;
|
||||||
|
border-right: 2px solid #949494;
|
||||||
|
}
|
||||||
|
|
||||||
|
.one-liner:focus{
|
||||||
|
border:none;
|
||||||
|
outline: none;
|
||||||
|
border-left: 2px solid #949494;
|
||||||
|
border-right: 2px solid #949494;
|
||||||
|
}
|
||||||
|
|
||||||
|
.clipboard-copy{
|
||||||
|
padding: 5vw 4vw;
|
||||||
|
width: 14%;
|
||||||
|
font-family: "pp-neue-machina";
|
||||||
|
color:#4d4d4d;
|
||||||
|
font-size: 3.5vw;
|
||||||
|
float:right;
|
||||||
|
background-color: #1a1a1a !important;
|
||||||
|
border: none;
|
||||||
|
border-right: 2px solid #949494;
|
||||||
|
transition: 0.2s linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
.clipboard-copy:hover{
|
||||||
|
background-color: #00ffd0 !important;
|
||||||
|
color: #1a1a1a !important;
|
||||||
|
box-shadow: inset 0vw 0vw 0vw 0.558vw #1a1a1a !important;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.clipboard-copy:hover{
|
@media only screen and (max-width: 576px) {
|
||||||
background-color: #00ffd0 !important;
|
|
||||||
color: #1a1a1a !important;
|
.one-liner{
|
||||||
box-shadow: inset 0vw 0vw 0vw 0.558vw #1a1a1a !important;
|
width: 100%;
|
||||||
|
padding: 7.5vw 7.5vw !important;
|
||||||
|
border-radius: 0px;
|
||||||
|
border: none;
|
||||||
|
background-color: #1a1a1a !important;
|
||||||
|
font-family: "pp-neue-machina";
|
||||||
|
color:#4d4d4d;
|
||||||
|
text-align: center !important;
|
||||||
|
font-size: 4vw;
|
||||||
|
border-left: 2px solid #949494;
|
||||||
|
border-right: 2px solid #949494;
|
||||||
|
}
|
||||||
|
|
||||||
|
.one-liner:focus{
|
||||||
|
border:none;
|
||||||
|
outline: none;
|
||||||
|
border-left: 2px solid #949494;
|
||||||
|
border-right: 2px solid #949494;
|
||||||
|
}
|
||||||
|
|
||||||
|
.clipboard-copy{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
@ -64,11 +142,12 @@
|
||||||
// Copy the text inside the text field
|
// Copy the text inside the text field
|
||||||
navigator.clipboard.writeText(copyText.value);
|
navigator.clipboard.writeText(copyText.value);
|
||||||
|
|
||||||
// Alert the copied text
|
/* Alert the copied text
|
||||||
alert("Copied " + copyText.value + " to clipboard");
|
alert("Copied " + copyText.value + " to clipboard");*/
|
||||||
|
|
||||||
// Copy icon
|
//Change button text to 'copied'
|
||||||
document.getElementById("copy-icon").innerHTML = "copied!";
|
document.getElementById("copy-icon").innerHTML = "copied!";
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in a new issue