Bemanistyle #1 In music game coverage - Dance Dance Revolution, Beatmania, IIDX, Popn Music Sponsored Banner Ad. Contact Keith or Djp to AdvertiseSponsored Advertisement

Go Back   Bemanistyle [dot] com Forums > Non-Bemani Topics > General Discussion > Computers & Technology
Reply
 
Thread Tools

Maybe this is old, but try it anyway.
Old 09-22-2008, 03:45 PM   #1
stuartwood89
Please, just call me Stu.
 
stuartwood89's Avatar
 
stuartwood89 is offline
Join Date: Aug 2006
Location: Gloucester, England
Posts: 2,899
Marketplace Rating: 0
Send a message via PM  to stuartwood89
stuartwood89
Default Maybe this is old, but try it anyway.

Go to Google Image Search.

Type anything you want into the search box and push enter.

When your image results appear, go to your address bar,empty it and paste in this code:

Code:
javascript:tempX = 0;tempY = 0;IE = document.all?true:false; if (!IE) document.captureEvents(Event.MOUSEMOVE); document.onmousemove = getMouseXY; R= 0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI= document.images ; DIL=DI.length; function A(){for(i=0; i<DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=tempX+Math. sin(R*x1+ i*x2+x3)* x4+x5; DIS.top=tempY+Math. cos(R*y1+ i*y2+y3)* y4+y5}R++ }setInterval('A()',5); void(0);function getMouseXY(e) {if (IE) {tempX = event.clientX + document.body.scrollLeft;tempY = event.clientY + document.body.scrollTop;} else {tempX = e.pageX;tempY = e.pageY;}return true;}
__________________

Quote:
stuartwood89: Kids like bright colours, it stimulates their rapidly developing minds.
Kakashi: i like bright colours
stuartwood89: Then maybe what I said about rapidly devoloping minds can have it's anomolies.
  Reply With Quote

Old 09-22-2008, 04:12 PM   #2
AceJay
//bemanistyle::[Regular]
 
AceJay's Avatar
 
AceJay is offline
Join Date: Jul 2006
Location: Princeton, NJ
Posts: 1,885
Marketplace Rating: 26
Send a message via PM  to AceJay
AceJay
Default

Uh that is awesome.

Also:

Code:
javascript:x=0;e=document.body;e.style.position="absolute";function rt(){e.style.top=100-(50*Math.cos(x*Math.PI/180))+"px";e.style.left=100+(50*Math.sin(x*Math.PI/180))+"px";x+=5};setInterval("rt()",50);void(0);

Last edited by AceJay : 09-23-2008 at 06:49 PM.
  Reply With Quote

Old 09-22-2008, 06:48 PM   #3
stuartwood89
Please, just call me Stu.
 
stuartwood89's Avatar
 
stuartwood89 is offline
Join Date: Aug 2006
Location: Gloucester, England
Posts: 2,899
Marketplace Rating: 0
Send a message via PM  to stuartwood89
stuartwood89
Default

That doesn't work for me
__________________

Quote:
stuartwood89: Kids like bright colours, it stimulates their rapidly developing minds.
Kakashi: i like bright colours
stuartwood89: Then maybe what I said about rapidly devoloping minds can have it's anomolies.
  Reply With Quote

Old 09-22-2008, 08:14 PM   #4
AceJay
//bemanistyle::[Regular]
 
AceJay's Avatar
 
AceJay is offline
Join Date: Jul 2006
Location: Princeton, NJ
Posts: 1,885
Marketplace Rating: 26
Send a message via PM  to AceJay
AceJay
Default

Doesn't work on Google Chrome so I;m assuming it won't work on FF either. It's just a script that makes the whole page move circular
  Reply With Quote

Old 09-22-2008, 09:09 PM   #5
MC Malicious Gravy
VIP MEGA EURO STAR
 
MC Malicious Gravy's Avatar
 
MC Malicious Gravy is offline
Join Date: Jun 2006
Location: Los Angeles, CA (USA)
Posts: 539
Marketplace Rating: 0
Send a message via PM  to MC Malicious Gravy
hentai (DJMP) / GRAVY (Technika)
Default

Quote:
Originally Posted by AceJay View Post
Doesn't work on Google Chrome so I;m assuming it won't work on FF either. It's just a script that makes the whole page move circular
Actually, there was a space in the script (I hate when text forms do that), so it's actually:
Code:
javascript:x=0;e=document.body;e.style.position="absolute";function rt(){e.style.top=100-(50*Math.cos(x*Math.PI/180))+"px";e.style.left=100+(50*Math.sin(x*Math.PI/180))+"px";x+=5};setInterval("rt()",50);void(0);
__________________

<-faizebook
///thats smoky style -tjon
tee hee~♪
  Reply With Quote

Old 09-23-2008, 08:39 AM   #6
stuartwood89
Please, just call me Stu.
 
stuartwood89's Avatar
 
stuartwood89 is offline
Join Date: Aug 2006
Location: Gloucester, England
Posts: 2,899
Marketplace Rating: 0
Send a message via PM  to stuartwood89
stuartwood89
Default

Still doesn't work for me.

I'll try on my home PC when I get home.
__________________

Quote:
stuartwood89: Kids like bright colours, it stimulates their rapidly developing minds.
Kakashi: i like bright colours
stuartwood89: Then maybe what I said about rapidly devoloping minds can have it's anomolies.
  Reply With Quote

Old 09-23-2008, 08:52 AM   #7
Blackraven
//bemanistyle::[Regular]
 
Blackraven's Avatar
 
Blackraven is offline
Join Date: Jun 2006
Location: Makati, Philippines
Posts: 5,150
Marketplace Rating: 0
Send a message via PM  to Blackraven



Default

Quote:
Originally Posted by stuartwood89 View Post
Go to Google Image Search.

Type anything you want into the search box and push enter.

When your image results appear, go to your address bar,empty it and paste in this code:

Code:
javascript:tempX = 0;tempY = 0;IE = document.all?true:false; if (!IE) document.captureEvents(Event.MOUSEMOVE); document.onmousemove = getMouseXY; R= 0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI= document.images ; DIL=DI.length; function A(){for(i=0; i<DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=tempX+Math. sin(R*x1+ i*x2+x3)* x4+x5; DIS.top=tempY+Math. cos(R*y1+ i*y2+y3)* y4+y5}R++ }setInterval('A()',5); void(0);function getMouseXY(e) {if (IE) {tempX = event.clientX + document.body.scrollLeft;tempY = event.clientY + document.body.scrollTop;} else {tempX = e.pageX;tempY = e.pageY;}return true;}
Err

Nothing is happening (even on IE 6)

What's this supposed to do again?
__________________
  Reply With Quote

Old 09-23-2008, 09:47 AM   #8
stuartwood89
Please, just call me Stu.
 
stuartwood89's Avatar
 
stuartwood89 is offline
Join Date: Aug 2006
Location: Gloucester, England
Posts: 2,899
Marketplace Rating: 0
Send a message via PM  to stuartwood89
stuartwood89
Default

That's weird it, works for me.

Do you have Java installed?
__________________

Quote:
stuartwood89: Kids like bright colours, it stimulates their rapidly developing minds.
Kakashi: i like bright colours
stuartwood89: Then maybe what I said about rapidly devoloping minds can have it's anomolies.
  Reply With Quote

Old 09-23-2008, 09:50 AM   #9
stuartwood89
Please, just call me Stu.
 
stuartwood89's Avatar
 
stuartwood89 is offline
Join Date: Aug 2006
Location: Gloucester, England
Posts: 2,899
Marketplace Rating: 0
Send a message via PM  to stuartwood89
stuartwood89
Default

Quote:
Originally Posted by stuartwood89 View Post
Still doesn't work for me.

I'll try on my home PC when I get home.
Tried it and it works. Schools computers are evidently shit.

Page moves around the screen. It works on this site too.
__________________

Quote:
stuartwood89: Kids like bright colours, it stimulates their rapidly developing minds.
Kakashi: i like bright colours
stuartwood89: Then maybe what I said about rapidly devoloping minds can have it's anomolies.
  Reply With Quote

Old 09-23-2008, 05:24 PM   #10
sнυи
Numnuticus
 
sнυи is offline
Join Date: Nov 2005
Location: 949, California
Posts: 1,480
Marketplace Rating: 5
Send a message via PM  to sнυи
Default

Damn both of those codes were beautiful since I put "tits" for the image search.
  Reply With Quote

Old 09-23-2008, 06:41 PM   #11
Hiryuu
Retired
 
Hiryuu's Avatar
 
Hiryuu is offline
Join Date: Jun 2006
Location: Benton, AR
Posts: 1,520
Marketplace Rating: 0
Send a message via PM  to Hiryuu
Default

The second script has a space between the 'a' and the 'b' in 'absolute'. Get rid of it.
__________________
[Simfiles] [YT profile]
  Reply With Quote

Old 09-23-2008, 10:50 PM   #12
Blackraven
//bemanistyle::[Regular]
 
Blackraven's Avatar
 
Blackraven is offline
Join Date: Jun 2006
Location: Makati, Philippines
Posts: 5,150
Marketplace Rating: 0
Send a message via PM  to Blackraven



Default

Quote:
Originally Posted by stuartwood89 View Post
That's weird it, works for me.

Do you have Java installed?
Java Runtime Environment?

Yeah I think so.

So I can't see why it won't work on mine.

P.S.
Nevertheless, I'll double check on it just to make sure (it might be outdated or something I guess).
__________________
  Reply With Quote
Reply



Go Back   Bemanistyle [dot] com Forums > Non-Bemani Topics > General Discussion > Computers & Technology
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Sponsored Advertisement



All times are GMT -6. The time now is 06:56 AM.

vBulletin skin developed by: eXtremepixels
Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0
| Home | Register | FAQ | Members List | Calendar | Today's Posts | Search | New Posts |