Why The Fuck?
This commit is contained in:
26
index.html
26
index.html
@@ -159,24 +159,32 @@
|
|||||||
</blockquote>
|
</blockquote>
|
||||||
<button id="mybtn" style="display:block; width:100px; height:50px;" onClick="action();">Call me</button>
|
<button id="mybtn" style="display:block; width:100px; height:50px;" onClick="action();">Call me</button>
|
||||||
<div id="myframe" style="display: none; position:relative;">
|
<div id="myframe" style="display: none; position:relative;">
|
||||||
<iframe id="callFrame" style="width:320px; height:480px;" allow="microphone; camera;" scrolling="no" frameborder="no"></iframe>
|
<iframe id="callFrame" style="width:320px; height:480px;" allow="microphone; camera;" scrolling="no" frameborder="no"></iframe>
|
||||||
</div>
|
</div>
|
||||||
<script>
|
<script>
|
||||||
function action() {
|
function action() {
|
||||||
document.getElementById('mybtn').style.visibility = 'hidden';
|
let mybtn = document.getElementById('mybtn');
|
||||||
let myframe = document.getElementById('myframe');
|
let myframe = document.getElementById('myframe');
|
||||||
myframe.style.display="block";
|
|
||||||
let callFrame = document.getElementById('callFrame');
|
if (myframe.style.display === "none" || myframe.style.display === "") {
|
||||||
let url_string = "https://talk.konsthol.eu/"
|
myframe.style.display = "block";
|
||||||
let user_string = url_string+"user/78577870064"
|
mybtn.textContent = "Hide call";
|
||||||
callFrame.src=user_string;
|
|
||||||
|
let callFrame = document.getElementById('callFrame');
|
||||||
|
let url_string = "https://talk.konsthol.eu/";
|
||||||
|
let user_string = url_string + "user/78577870064";
|
||||||
|
callFrame.src = user_string;
|
||||||
|
} else {
|
||||||
|
myframe.style.display = "none";
|
||||||
|
mybtn.textContent = "Call me";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<h2 id="donate">Donate 💸</h2>
|
<h2 id="donate">Donate 💸</h2>
|
||||||
<p>I accept donations for any reason</p>
|
<p>I accept donations for any reason</p>
|
||||||
<p><a href="donate.html">Donate</a><br /></p>
|
<p><a href="donate.html">Donate</a><br /></p>
|
||||||
<h2>Daily Unique Visitors</h2><p>
|
<h2>Daily Unique Visitors</h2><p>
|
||||||
Thursday 26/12/24 21:36:26
|
Thursday 26/12/24 23:41:46
|
||||||
3
|
3
|
||||||
</p>
|
</p>
|
||||||
<h2 id="also-on-the-web">Also on the web 🕸️</h2>
|
<h2 id="also-on-the-web">Also on the web 🕸️</h2>
|
||||||
|
|||||||
Reference in New Issue
Block a user