browser demo effect
category: general [glöplog]
How about extending the effect a bit and posting the result here?
I have been thinking about making a version that only uses the pouet logo, but I am too lazy to look up a javascript reference manual.
I have been thinking about making a version that only uses the pouet logo, but I am too lazy to look up a javascript reference manual.
Hehehe this is nice!!! :D
CDC!!!
awesome!
nice website haXX0r
nice demo
nice one!
xeron: still no cigar
That's great :D
oh, got it working in IE now, really cool ;)
I used the same kind of concept and wrote somethin up...this may creep out your msn buddies.
muahahahaha.
Code:
javascript:im = document.images;iml = im.length;ix = new Array(iml);iy = new Array(iml);for(i = 0;i < iml;i++) {ix[i] = document.images[i].width;iy[i] = document.images[i].height;}function bounce() {for(i = 0;i < iml;i++) {ix[i] = ix[i] + 2;iy[i] = iy[i] + 2;document.images[i].width = ix[i];document.images[i].height = iy[i];}}setInterval('bounce()',10);void(0 )
muahahahaha.
super
top stuff!
pouet.net cracked by xplsv :P (greetings to apricot)
Code:
javascript:i =0;LOGO = document.images[0].style; HB = document.getElementsByTagName("table")[0].style; HB.position = LOGO.position ='relative';function FX(){HB.top = LOGO.left = Math.sin(i/50)*50;i++}setInterval('FX()',5); void(0)
pouet.net cracked properly now :P
Code:
javascript:i =0;LOGO = document.images[0].style; HB = document.getElementsByTagName("table")[0].style; BG = document.body.style; BG.background = "#aaaaaa url(../gfx/trumpet.gif) repeat 10px 10px"; HB.position = LOGO.position ='relative';function FX(){HB.top = LOGO.left = Math.sin(i/20)*50;BG.backgroundPosition = (Math.sin(i/20)*80)+" "+(Math.cos(i/20)*80);i++}setInterval('FX()',5); void(0)
awesome stuff trace!
Hehe! a shame you have to scroll up to see the other effects... Well, I guess the people will find it out.
what about that ?
Code:
javascript:L=document.images[0];h=L.height;b='';for(y=0;y<h;y+=2)b+='<tt style="position:relative;display:block;margin:0;overflow:hidden;width:'+L.width+'px;height:2px;background:url('+L.getAttribute('src')+') 0px -'+y+'px no-repeat;"></tt>\n';L.parentNode.innerHTML=b;T=document.getElementsByTagName('tt');t=setInterval("t+=.337;for(i=0;i<T.length;i++)T[i].style.left=4*Math.cos(t+i*.06)+'%';document.body.style.backgroundPosition=-((t*40)%25400)+'px -'+Math.abs(60*Math.cos(t))+'px'",20);void(0)
:\ the word wrapping broke the script.
Remove the whitespace in:
L.w idth
getElement sByTagName
style .left
%254 00
Remove the whitespace in:
L.w idth
getElement sByTagName
style .left
%254 00
should it be like this?!
Btw, it's awesome p01! :D
Code:
javascript:L=document.images[0];h=L.height;b='';for(y=0;y<h;y+=2)b+='<tt style="position:relative;display:block;margin:0;overflow:hidden;width:'+L.width+'px;height:2px;background:url('+L.getAttribute('src')+') 0px -'+y+'px no-repeat;"></tt>\n';L.parentNode.innerHTML=b;T=document.getElementsByTagName('tt');t=setInterval("t+=.337;for(i=0;i<T.length;i++)T[i].style.left=4*Math.cos(t+i*.06)+'%';document.body.style.backgroundPosition=-((t*40)%25400)+'px -'+Math.abs(60*Math.cos(t))+'px'",20);void(0)
Btw, it's awesome p01! :D
didn't work either :'(
Better like this:
http://www.rafb.net/paste/results/3G82oa79.html
http://www.rafb.net/paste/results/3G82oa79.html
thx,
Let's try a shorter variant with some extra whitespace to be pouet-parser friendly :
Let's try a shorter variant with some extra whitespace to be pouet-parser friendly :
Code:
javascript:L=document.images[0];b='';for(y=0;y<L.height;y+=2)b+='<tt style="position:relative;display:block;margin:0;overflow:hidden;width:'+ L.width+'px;height:2px;background:url('+L.getAttribute('src')+') 0px -'+y+'px no-repeat;"></tt>';L.parentNode.innerHTML=b; T=document.getElementsByTagName('tt');t=setInterval("document.body.style.backgroundPosition=-++t*8+'px -'+Math.abs(42*Math.cos(t/3))+'px'; for(i=0;i<T.length;i++)T[i].style.left=42*Math.cos(t/3+i/17)",20);void(0)
Once more, with feeling
Code:
That one should work. ( crossing fingers )javascript:L=document.images[0];b='';for(y=0;y<L.height;y+=2)b+='<tt style="position:relative;display:block;margin:0;overflow:hidden;width:'+ L.width+'px;height:2px;background:url('+L.getAttribute('src')+') 0px -'+y+'px no-repeat;"></tt>';L.parentNode.innerHTML=b; T=document.getElementsByTagName('tt');t=setInterval(" document.body.style.backgroundPosition=-++t*8+'px -'+Math.abs(42*Math.cos(t/3))+'px'; for(i=0;i<T.length;i++)T[i].style.left=42*Math.cos(t/3+i/17)",20);void(0 )