"Javeen's Place" Source Code tapeykatt.neocities.org
website
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 153 lines 3.7 kB view raw
1<!DOCTYPE html> 2<html> 3 <head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <title>The web site of nicolasperez</title> 7 <!-- The style.css file allows you to change the look of your web pages. 8 If you include the next line in all your web pages, they will all share the same look. 9 This makes it easier to make new pages for your site. --> 10 <link href="/style_old.css" rel="stylesheet" type="text/css" media="all"> 11 <script type='text/javascript' src='//www.midijs.net/lib/midi.js'></script> 12 <style> 13 #glitch { 14 15 /* Change glitch effect here */ 16 /* animation: glitch-2 1s infinite linear; */ 17 animation: glitch-1 2s infinite linear; 18} 19 20@keyframes glitch-1 { 21 0%, 22 12%, 23 15%, 24 52%, 25 55%, 26 82%, 27 85%, 28 100% { 29 opacity: 1; 30 transform: scaleX(1) scaleY(1); 31 } 32 13% { 33 opacity: .8; 34 transform: scaleY(2); 35 color: #fff; 36 } 37 53% { 38 opacity: .8; 39 transform: scaleX(.7); 40 color: #000; 41 } 42 83% { 43 opacity: 8; 44 transform: rotate(-10deg); 45 color: #fff; 46 } 47} 48 49@keyframes glitch-2 { 50 13% { 51 color: #000; 52 } 53 53% { 54 color: #fff; 55 } 56 83% { 57 color: #000; 58 } 59} 60</style> 61<SCRIPT LANGUAGE="JavaScript"> 62 63 64<!-- Begin 65var expDays = 1; // number of days the cookie should last 66 67var page = "cuandoyolaviwujuju.html"; 68var windowprops = "width=300,height=200,location=no,toolbar=no,menubar=no,scrollbars=no,resizable=yes"; 69 70function GetCookie (name) { 71var arg = name + "="; 72var alen = arg.length; 73var clen = document.cookie.length; 74var i = 0; 75while (i < clen) { 76var j = i + alen; 77if (document.cookie.substring(i, j) == arg) 78return getCookieVal (j); 79i = document.cookie.indexOf(" ", i) + 1; 80if (i == 0) break; 81} 82return null; 83} 84function SetCookie (name, value) { 85var argv = SetCookie.arguments; 86var argc = SetCookie.arguments.length; 87var expires = (argc > 2) ? argv[2] : null; 88var path = (argc > 3) ? argv[3] : null; 89var domain = (argc > 4) ? argv[4] : null; 90var secure = (argc > 5) ? argv[5] : false; 91document.cookie = name + "=" + escape (value) + 92((expires == null) ? "" : ("; expires=" + expires.toGMTString())) + 93((path == null) ? "" : ("; path=" + path)) + 94((domain == null) ? "" : ("; domain=" + domain)) + 95((secure == true) ? "; secure" : ""); 96} 97function DeleteCookie (name) { 98var exp = new Date(); 99exp.setTime (exp.getTime() - 1); 100var cval = GetCookie (name); 101document.cookie = name + "=" + cval + "; expires=" + exp.toGMTString(); 102} 103var exp = new Date(); 104exp.setTime(exp.getTime() + (expDays*24*60*60*1000)); 105function amt(){ 106var count = GetCookie('count') 107if(count == null) { 108SetCookie('count','1') 109return 1 110} 111else { 112var newcount = parseInt(count) + 1; 113DeleteCookie('count') 114SetCookie('count',newcount,exp) 115return count 116 } 117} 118function getCookieVal(offset) { 119var endstr = document.cookie.indexOf (";", offset); 120if (endstr == -1) 121endstr = document.cookie.length; 122return unescape(document.cookie.substring(offset, endstr)); 123} 124 125function checkCount() { 126var count = GetCookie('count'); 127if (count == null) { 128count=1; 129SetCookie('count', count, exp); 130 131window.open(page, "", windowprops); 132 133} 134else { 135count++; 136SetCookie('count', count, exp); 137 } 138} 139// End --> 140</script> 141 </head> 142 <body OnLoad="checkCount()"> 143 <h1 style=" 144 background: rgb(159,0,0); 145background: linear-gradient(90deg, rgba(159,0,0,1) 0%, rgba(25,25,112,1) 55%); 146text-align: left; 147font-family: verdana;" 148id="glitch">XD</h1> 149<script> 150MIDIjs.play('https://nicolasperez.neocities.org/themesong.mid'); 151</script> 152 </body> 153</html>