aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorElias Fleckenstein <eliasfleckenstein@web.de>2021-12-31 19:52:12 +0100
committerElias Fleckenstein <eliasfleckenstein@web.de>2021-12-31 19:52:12 +0100
commit44d580b3eba036cfcc85b257f9cb201731c502b1 (patch)
tree6be642d592cd52a395bb6d80398ec9a998d8057c /index.html
downloadlovetester-44d580b3eba036cfcc85b257f9cb201731c502b1.tar.xz
Initial commit
Diffstat (limited to 'index.html')
-rwxr-xr-xindex.html57
1 files changed, 57 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100755
index 0000000..376cb13
--- /dev/null
+++ b/index.html
@@ -0,0 +1,57 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Love Tester</title>
+ <meta charset="utf-8">
+ <style>
+ body{width:100%;height:100%;background-color:#FFA5E9}
+ .name{color:blue;font-weight:bold;font-size:30px;}
+ #font{color:#BD003F;position:relative;bottom:300px;}
+ </style>
+ <script>
+ let exceptions = {};
+
+ exceptions["LARA" + "MARVIN"] = 2;
+ exceptions["DENNIS" + "EISHALLE"] = 2;
+ exceptions["MALTE" + "FIONA"] = 99;
+ exceptions["BATU" + "ALIAH"] = 9;
+
+ !function(f,a,c){var s,l=256,p="random",d=c.pow(l,6),g=c.pow(2,52),y=2*g,h=l-1;function n(n,t,r){function e(){for(var n=u.g(6),t=d,r=0;n<g;)n=(n+r)*l,t*=l,r=u.g(1);for(;y<=n;)n/=2,t/=2,r>>>=1;return(n+r)/t}var o=[],i=j(function n(t,r){var e,o=[],i=typeof t;if(r&&"object"==i)for(e in t)try{o.push(n(t[e],r-1))}catch(n){}return o.length?o:"string"==i?t:t+"\0"}((t=1==t?{entropy:!0}:t||{}).entropy?[n,S(a)]:null==n?function(){try{var n;return s&&(n=s.randomBytes)?n=n(l):(n=new Uint8Array(l),(f.crypto||f.msCrypto).getRandomValues(n)),S(n)}catch(n){var t=f.navigator,r=t&&t.plugins;return[+new Date,f,r,f.screen,S(a)]}}():n,3),o),u=new m(o);return e.int32=function(){return 0|u.g(4)},e.quick=function(){return u.g(4)/4294967296},e.double=e,j(S(u.S),a),(t.pass||r||function(n,t,r,e){return e&&(e.S&&v(e,u),n.state=function(){return v(u,{})}),r?(c[p]=n,t):n})(e,i,"global"in t?t.global:this==c,t.state)}function m(n){var t,r=n.length,u=this,e=0,o=u.i=u.j=0,i=u.S=[];for(r||(n=[r++]);e<l;)i[e]=e++;for(e=0;e<l;e++)i[e]=i[o=h&o+n[e%r]+(t=i[e])],i[o]=t;(u.g=function(n){for(var t,r=0,e=u.i,o=u.j,i=u.S;n--;)t=i[e=h&e+1],r=r*l+i[h&(i[e]=i[o=h&o+t])+(i[o]=t)];return u.i=e,u.j=o,r})(l)}function v(n,t){return t.i=n.i,t.j=n.j,t.S=n.S.slice(),t}function j(n,t){for(var r,e=n+"",o=0;o<e.length;)t[h&o]=h&(r^=19*t[h&o])+e.charCodeAt(o++);return S(t)}function S(n){return String.fromCharCode.apply(0,n)}if(j(c.random(),a),"object"==typeof module&&module.exports){module.exports=n;try{s=require("crypto")}catch(n){}}else"function"==typeof define&&define.amd?define(function(){return n}):c["seed"+p]=n}("undefined"!=typeof self?self:this,[],Math);
+ function test(){
+ var name1 = document.getElementsByName('name1')[0].value.toUpperCase();
+ var name2 = document.getElementsByName('name2')[0].value.toUpperCase();
+ var result = magic(name1,name2);
+ happy(result*10);
+ }
+ function down(){
+ document.getElementById('heart').width = 450;
+ document.getElementById('heart').style.top = "25px";
+ document.getElementById('font').style.bottom = "250px";
+ }
+ function up(){
+ document.getElementById('heart').width = 500;
+ document.getElementById('heart').style.top = "0px";
+ document.getElementById('font').style.bottom = "300px";
+ }
+
+ function magic(name1,name2){
+ let cat = name1 + name2;
+ return exceptions[cat] || Math.floor(new Math.seedrandom(cat)()*100);
+ }
+ function happy(value){
+ var nw = 0;
+ window.setInterval(_=>{if(nw < value){nw++;document.getElementById('bar').style.width = nw + "px";document.getElementById('bar').innerHTML = Math.floor(nw/10) + "%" }},5);
+ }
+ </script>
+ </head>
+ <body><center>
+ <br><br>
+ <input class="name" type="name" name="name1" placeholder="Enter Your Name">
+ <br><br>
+ <input class="name" type="name" name="name2" placeholder="Enter his/her Name">
+ <br><br>
+ <img id="heart" src="heart.svg" width="500" onclick="test()" onmousedown="down()" onmouseup="up()" style="position:relative">
+ <h1 id="font" onclick="test()" onmousedown="down()" onmouseup="up()">Test Love</h1>
+ <div style="position:fixed;bottom:5px;left:0px;width:100%"><center><div align="right" style="color:white;font-size:40px;width:1000px;height:50px;background-color:white;border-style:solid;border-color:#004EFF;border-radius:1%;position:relative"><div id="bar"style="position:absolute;left:0px;top:0px;width:0px;height:50px;background-color:#CA00A5;border-radius:1%"></div></div></center></div>
+ </body></center>
+</html>