Click Here!
Promote! | Advertise | View Sponsors | Top100
Welcome to 3reef.com, the friendly tropical fish forum community where reef aquarium enthusiasts from around the world come to discuss coral reef aquariums, saltwater fish, corals, inverts, protein skimmers, fish filters, aquarium lighting, refugiums, etc. Also freshwater fish information on tetras, goldfish, cichlids and more!

You are currently viewing 3reef.com as a guest which gives you limited access to view most tropical fish forum discussions, articles and photo galleries. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload your own photo gallery and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact support.
Go Back   3reef Forums > Off Topic > The Bucket

» 3reef Navigation
» Aquarium Ads
aquariumrank



And here too!

Reply
 
LinkBack Thread Tools
Old 12-31-2007, 11:06 AM   #1 (permalink)
Gnarly Old Codfish
 
omard's Avatar
 
Join Date: Sep 2003
Location: Silverdale, Washington
Age: 59
Posts: 4,778
Blog Entries: 25
Karma: 4554
omard has a reputation beyond reputeomard has a reputation beyond reputeomard has a reputation beyond reputeomard has a reputation beyond reputeomard has a reputation beyond reputeomard has a reputation beyond reputeomard has a reputation beyond reputeomard has a reputation beyond reputeomard has a reputation beyond reputeomard has a reputation beyond reputeomard has a reputation beyond repute


 
 
 
Default Nemo Cursor Fun!

Added below script to Aquarium "Home Page" ---- is great fun to play with. (Does not like "Mozilla/FireFox")


See at:


Davis Family Aquarium



To add to page of your own...copy script and point "Src=" location to wherever you copy clown .gif to.


i.e. .gif at "http://i199.photobucket.com/albums/a...sc/ANCLOWN.gif"

src=http://i199.photobucket.com/albums/aa79/omard1/Misc/ANCLOWN.gif

Have Fun!






<body background="white_keyboard_bg.gif">
<ul><ul>
<div id="dot0" style="position: absolute; visibility: hidden; height: 20; width: 20;">little<img src="http://www.garf.org/trever/NEMO/ANCLOWN.gif" height=48 width=48></div>
<div id="dot1" style="position: absolute; height: 30; width: 30;"><img src="ANCLOWN.gif" height=30 width=30></div>
<div id="dot2" style="position: absolute; height: 30; width: 30;"><img src="ANCLOWN.gif" height=30 width=30></div>
<div id="dot3" style="position: absolute; height: 30; width: 30;"><img src="ANCLOWN.gif" height=30 width=30></div>
<div id="dot4" style="position: absolute; height: 30; width: 30;"><img src="ANCLOWN.gif" height=30 width=30></div>
<div id="dot5" style="position: absolute; height: 30; width: 30;"><img src="ANCLOWN.gif" height=30 width=30></div>
<div id="dot6" style="position: absolute; height: 30; width: 30;"><img src="ANCLOWN.gif" height=30 width=30></A>
<p align="center"></div>

<SCRIPT LANGUAGE="JavaScript">




var nDots = 6;
var Xpos = 0;
var Ypos = 0;

var DELTAT = .01;
var SEGLEN = 10;
var SPRINGK = 10;
var MASS = 1;
var GRAVITY = 50;
var RESISTANCE = 10;
var STOPVEL = 0.1;
var STOPACC = 0.1;
var DOTSIZE = 11;
var BOUNCE = 0.75;
var isNetscape = navigator.appName=="Netscape";
var followmouse = true;
var dots = new Array();
init();
function init() {
var i = 0;
for (i = 0; i < nDots; i++) {
dots[i] = new dot(i);
}
if (!isNetscape) {
// I only know how to read the locations of the
// <LI> items in IE
//skip this for now
// setInitPositions(dots)
}
for (i = 0; i < nDots; i++) {
dots[i].obj.left = dots[i].X;
dots[i].obj.top = dots[i].Y;
}
if (isNetscape) {
startanimate();
} else {
// let dots sit there for a few seconds
// since they're hiding on the real bullets
setTimeout("startanimate()", 3000);
}
}
function dot(i) {
this.X = Xpos;
this.Y = Ypos;
this.dx = 0;
this.dy = 0;
if (isNetscape) {
this.obj = eval("document.dot" + i);
} else {
this.obj = eval("dot" + i + ".style");
}
}
function startanimate() {
setInterval("animate()", 20);
}
function setInitPositions(dots) {
var startloc = document.all.tags("LI");
var i = 0;
for (i = 0; i < startloc.length && i < (nDots - 1); i++) {
dots[i+1].X = startloc[i].offsetLeft
startloc[i].offsetParent.offsetLeft - DOTSIZE;
dots[i+1].Y = startloc[i].offsetTop +
startloc[i].offsetParent.offsetTop + 2*DOTSIZE;
}
dots[0].X = dots[1].X;
dots[0].Y = dots[1].Y - SEGLEN;
}
function MoveHandler(e) {
Xpos = e.pageX;
Ypos = e.pageY;
return true;
}
function MoveHandlerIE() {
Xpos = window.event.x + document.body.scrollLeft;
Ypos = window.event.y + document.body.scrollTop;
}
if (isNetscape) {
document.captureEvents(Event.MOUSEMOVE);
document.onMouseMove = MoveHandler;
} else {
document.onmousemove = MoveHandlerIE;
}
function vec(X, Y)
{
this.X = X;
this.Y = Y;
}

// adds force in X and Y to spring for dot[i] on dot[j]
function springForce(i, j, spring)
{
var dx = (dots[i].X - dots[j].X);
var dy = (dots[i].Y - dots[j].Y);
var len = Math.sqrt(dx*dx + dy*dy);
if (len > SEGLEN) {
var springF = SPRINGK * (len - SEGLEN);
spring.X += (dx / len) * springF;
spring.Y += (dy / len) * springF;
}
}
function animate() {
var start = 0;
if (followmouse) {
dots[0].X = Xpos;
dots[0].Y = Ypos;
start = 1;
}
for (i = start ; i < nDots; i++ ) {
var spring = new vec(0, 0);
if (i > 0) {
springForce(i-1, i, spring);
}
if (i < (nDots - 1)) {
springForce(i+1, i, spring);
}
var resist = new vec(-dots[i].dx * RESISTANCE, -dots[i].dy * RESISTANCE);
var accel = new vec((spring.X + resist.X)/ MASS, (spring.Y + resist.Y)/ MASS + GRAVITY);
dots[i].dx += (DELTAT * accel.X);
dots[i].dy += (DELTAT * accel.Y);
if (Math.abs(dots[i].dx) < STOPVEL &&
Math.abs(dots[i].dy) < STOPVEL &&
Math.abs(accel.X) < STOPACC &&
Math.abs(accel.Y) < STOPACC) {
dots[i].dx = 0;
dots[i].dy = 0;
}
dots[i].X += dots[i].dx;
dots[i].Y += dots[i].dy;
var height, width;
if (isNetscape) {
height = window.innerHeight + document.scrollTop;
width = window.innerWidth + document.scrollLeft;
} else {
height = document.body.clientHeight + document.body.scrollTop;
width = document.body.clientWidth + document.body.scrollLeft;
}
if (dots[i].Y >= height - DOTSIZE - 1) {
if (dots[i].dy > 0) {
dots[i].dy = BOUNCE * -dots[i].dy;
}
dots[i].Y = height - DOTSIZE - 1;
}
if (dots[i].X >= width - DOTSIZE) {
if (dots[i].dx > 0) {
dots[i].dx = BOUNCE * -dots[i].dx;
}
dots[i].X = width - DOTSIZE - 1;
}
if (dots[i].X < 0) {
if (dots[i].dx < 0) {
dots[i].dx = BOUNCE * -dots[i].dx;
}
dots[i].X = 0;
}
dots[i].obj.left = dots[i].X;
dots[i].obj.top = dots[i].Y;
}
}
// End -->

</script>


_________

AG "125," AquaC EV 180, 30 gal sump, "SCWD", 80 lbs LR, CoralSeaLife "Moonlite" Hood, PFO 250W HQI Mini-Pendant (SPS HQI 14000k bulb)
12 Gallon NanoCube - 24w stock PC 50/50 light
"...nothing good ever happens fast in a reef tank, only bad things happen fast..."
- MIKE PALLETTA -
(2008 Reef log)
("OmarD"/"Scott")
omard is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reef Links
Click Here!
Old 12-31-2007, 12:04 PM   #2 (permalink)
Panda Puffer
 
aquaboy's Avatar
 
Join Date: Jul 2007
Location: Tatamy, PA
Age: 15
Posts: 2,113
Karma: 2133
aquaboy has a reputation beyond reputeaquaboy has a reputation beyond reputeaquaboy has a reputation beyond reputeaquaboy has a reputation beyond reputeaquaboy has a reputation beyond reputeaquaboy has a reputation beyond reputeaquaboy has a reputation beyond reputeaquaboy has a reputation beyond reputeaquaboy has a reputation beyond reputeaquaboy has a reputation beyond reputeaquaboy has a reputation beyond repute


 
Default

When i look directly at it, it feels as if it is coming for me!


_________

aquaboy is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 12-31-2007, 12:09 PM   #3 (permalink)
Montipora Digitata
 
sssnake's Avatar
 
Join Date: Dec 2005
Location: Montreal, Canada
Posts: 1,062
Karma: 1296
sssnake has much to be proud ofsssnake has much to be proud ofsssnake has much to be proud ofsssnake has much to be proud ofsssnake has much to be proud ofsssnake has much to be proud ofsssnake has much to be proud ofsssnake has much to be proud ofsssnake has much to be proud of


 
 
 
Default

....(Does not like "Mozilla/FireFox").....

Bummer.

Oh well...
sssnake is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 12-31-2007, 08:26 PM   #4 (permalink)
Giant Squid
 
baugherb's Avatar
 
Join Date: Sep 2007
Location: niles, ohio
Age: 32
Posts: 3,532
Blog Entries: 1
Karma: 6313
baugherb has a reputation beyond reputebaugherb has a reputation beyond reputebaugherb has a reputation beyond reputebaugherb has a reputation beyond reputebaugherb has a reputation beyond reputebaugherb has a reputation beyond reputebaugherb has a reputation beyond reputebaugherb has a reputation beyond reputebaugherb has a reputation beyond reputebaugherb has a reputation beyond reputebaugherb has a reputation beyond repute


 
 
Default

I'll give it a try and see what happens.... Cool!!!!!
baugherb is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 01-04-2008, 08:19 PM   #5 (permalink)
Flamingo Tongue
 
david7700's Avatar
 
Join Date: Nov 2007
Location: East Lansing, MI
Age: 21
Posts: 100
Karma: 98
david7700 is moving on up!


 
Default

Seems to work for me and I use Mozilla, probably is smoother/more realistic in IE. Darrrned microsoft, I stopped using their browser when it became extremely slow and had 1,000 security loopholes that let virus run wild on my CPU. (partially my fault due to some pop-up browsing)


_________

29g, 25# LR, TWO Korillia 2s, 400w 10K MH,
6 snails, 4 crabs, 2 fish, a Kenya Tree Coral and LTA
up since 10/07
david7700 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 01-04-2008, 08:46 PM   #6 (permalink)
Stylophora
 
wastemanagement's Avatar
 
Join Date: Sep 2007
Location: Quebec City
Posts: 956
Karma: 1277
wastemanagement has much to be proud ofwastemanagement has much to be proud ofwastemanagement has much to be proud ofwastemanagement has much to be proud ofwastemanagement has much to be proud ofwastemanagement has much to be proud ofwastemanagement has much to be proud ofwastemanagement has much to be proud ofwastemanagement has much to be proud of


 
 
Default

I saw this a while back its so cool


_________


a clean tanks a happy tank


55gl skimmerless, 80lbs live rock,
DIY wavemaker running 3x MJ1200 with hydor deflector.
2 DIY fluidized reactors Carbon & ROWAphos
LIghts- 2x 50/50 atinics T10's , 2x life gro T10's ,
1x20,000K T12, 1x6,000K T10.
Fish-3
Coral-13.
wastemanagement is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reef Links
Click Here!
Reply

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

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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Nemo and green bubble coral bldblu_2 Coral 19 08-01-2008 11:49 AM
Finding A Mate For My Nemo lunatik_69 Tropical Fish 6 09-17-2007 06:49 PM
I Lost Nemo! beamer General Reef Topics 9 01-28-2005 12:03 PM
an actual article (flushing nemo) karlas General Reef Topics 2 07-02-2003 05:58 AM
Seen 'Nemo' yet? Matt Rogers General Reef Topics 2 06-15-2003 07:35 AM

Powered by vBadvanced CMPS v3.0.1

All times are GMT -7. The time now is 02:24 AM.

Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0,
----
All trademarks used are properties of their respective owners. All rights reserved.
All forum posts are the property of the posters. All else © 1996-2008, 3reef.com LLC.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74