function display_ct7() {
var x = new Date()
var ampm = x.getHours( ) >= 12 ? ' PM' : ' AM';
hours = x.getHours( );
hours = hours ? hours : 12;
hours=hours.toString().length==1? 0+hours.toString() : hours;
var minutes=x.getMinutes().toString()
minutes=minutes.length==1 ? 0+minutes : minutes;
var seconds=x.getSeconds().toString()
seconds=seconds.length==1 ? 0+seconds : seconds;
var month=(x.getMonth() +1).toString();
month=month.length==1 ? 0+month : month;
var dt=x.getDate().toString();
dt=dt.length==1 ? 0+dt : dt;
var x1=month + "/" + dt + "/" + x.getFullYear();
x1 = x1 + " - " + hours + ":" + minutes + ":" + seconds + " " + ampm;
document.getElementById('ct7').innerHTML = x1;
display_c7();
}
function display_c7(){
var refresh=1000; // Refresh rate in milli seconds
mytime=setTimeout('display_ct7()',refresh)
}
display_c7();
var snowmax=40
var snowcolor=new Array("#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF","#FFFFFF")
var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS")
var snowletter=""
var sinkspeed=0.6
var snowmaxsize=15
var snowminsize=8
var snowingzone=1
// Do not edit below this line
var snow=new Array()
var marginbottom
var marginright
var timer
var i_snow=0
var x_mv=new Array();
var crds=new Array();
var lftrght=new Array();
var browserinfos=navigator.userAgent
var ie5=document.all&&document.getElementById&&!browserinfos.match(/Opera/)
var ns6=document.getElementById&&!document.all
var opera=browserinfos.match(/Opera/)
var browserok=ie5||ns6||opera
function randommaker(range) {
rand=Math.floor(range*Math.random())
return rand
}
function initsnow() {
if (ie5 || opera) {
marginbottom = document.body.clientHeight
marginright = document.body.clientWidth
}
else if (ns6) {
marginbottom = window.innerHeight
marginright = window.innerWidth
}
var snowsizerange=snowmaxsize-snowminsize
for (i=0;i<=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i<=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy>=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)>(marginright-3*lftrght[i])){
if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)}
if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)}
if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4}
if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2}
snow[i].posy=0
}
}
var timer=setTimeout("movesnow()",50)
}
for (i=0;i<=snowmax;i++) { document.write(""+snowletter+"")
}
if (browserok) {
window.onload=initsnow
}
[+]— H4cked By AnggaXploit —[+]
– Esteem Restoration Eagle-
“HANYA SEBUAH LUKA KECIL YANG”
KAMU BERJANJI DENGAN DIRI KU UNTUK
TIDAK AKAN PERNAH MENINGGALKAN KU TAPI SEKRANG APA 🙁
– 404 Not –
||
Greetz
:
||
Copyrights © AnggaXploit
l
var Audloop = 0;
paragraph = document.getElementById("title");
document.getElementById("audios").onchange = function() {title()};
function title()
{
var x = document.getElementById("audios").value;
if(x == 01){
paragraph.innerHTML = "reckless speed up";
}
else if(x == 02){
paragraph.innerHTML = "meskipun engkau telah pergi";
}
else if(x == 03){
paragraph.innerHTML = "DJ PALE PALE";
}
else if(x == 04){
paragraph.innerHTML = "DJ COCO";
}
else if(x == 05){
paragraph.innerHTML = "DJ BASTA BOI";
}
}
const looptrue = document.getElementById('looptrue');
const loopfalse = document.getElementById('loopfalse');
loopfalse.style.display = 'none';
looptrue.addEventListener('click', () => {
looptrue.style.display = 'none';
loopfalse.style.display = 'block';
Audloop = 1;
});
loopfalse.addEventListener('click', () => {
looptrue.style.display = 'block';
loopfalse.style.display = 'none';
Audloop = 0;
});
document.getElementById('pause').style.display = 'none';
document.querySelectorAll('audio').forEach(el => el.addEventListener('ended', function (e) {
document.getElementById('pause').style.display = 'none';
document.getElementById('play').style.display = 'block';
var endedTag=e.target;
}));
function pause() {
document.getElementById('pause').style.display = 'none';
document.getElementById('play').style.display = 'block';
document.querySelectorAll('audio').forEach(el => el.pause());
}
function timeLeft(player) {
var aud = document.getElementById(player);
// Countdown
aud.addEventListener("timeupdate", function() {
var timeleft = document.getElementById('timeleft'),
duration = parseInt( aud.duration ),
currentTime = parseInt( aud.currentTime ),
timeLeft = duration - currentTime,
s, m;
s = timeLeft % 60;
m = Math.floor( timeLeft / 60 ) % 60;
s = s < 10 ? "0"+s : s; m = m < 10 ? "0"+m : m; timeleft.innerHTML = m+":"+s; }, false); } function play() { document.getElementById('pause').style.display = 'block'; document.getElementById('play').style.display = 'none'; var Aud = document.getElementById("audios").value; var aud01 = document.getElementById("aud01"); var aud02 = document.getElementById("aud02"); var aud03 = document.getElementById("aud03"); var aud04 = document.getElementById("aud04"); var aud05 = document.getElementById("aud05"); if(Aud==01){ title() aud01.play(); aud01.currentTime = 0; timeLeft("aud01") if(Audloop == 1){ aud01.loop = true; timeLeft("aud01") }else if(Audloop == 0){ aud01.loop = false; }; } else if(Aud==02){ title() aud02.play(); aud02.currentTime = 0; timeLeft("aud02") if(Audloop == 1){ aud02.loop = true; timeLeft("aud02") }else if(Audloop == 0){ aud02.loop = false; }; } else if(Aud==03){ title() aud03.play(); aud03.currentTime = 0; timeLeft("aud03") if(Audloop == 1){ aud03.loop = true; timeLeft("aud03") }else if(Audloop == 0){ aud03.loop = false; }; } else if(Aud==04){ title() aud04.play(); aud04.currentTime = 0; timeLeft("aud04") if(Audloop == 1){ aud04.loop = true; timeLeft("aud04") }else if(Audloop == 0){ aud04.loop = false; }; } else if(Aud==05){ title() aud05.play(); aud05.currentTime = 0; timeLeft("aud05") if(Audloop == 1){ aud05.loop = true; timeLeft("aud05") }else if(Audloop == 0){ aud05.loop = false; }; } }