Webmaster Forum


Go Back   Webmaster Forum > Web Development > Web Design Lobby
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Web Design Lobby Forum for general web design issues not specific to scripting or graphics.

Lionsanime Directory   Improve your ranking, submit to directories   V7N Directory

Reply
 
LinkBack Thread Tools Display Modes
Old 07-01-2005, 09:48 AM   #1 (permalink)
Inactive
 
Join Date: 05-19-05
Posts: 66
iTrader: 0 / 0%
Latest Blog:
None

tuzaj is liked by many
A cursor with a word beside it

Hi guys,
I saw this kind of cute cursor with a word beside it.i was wondering if any knows about it. Thanks for your time.
tuzaj is offline  
Add Post to del.icio.us
Reply With Quote
Sponsored Links
SEO Hosting by HostGator  Advertise Here  Buy Blog Links
Old 07-01-2005, 10:13 AM   #2 (permalink)
Moderator
 
South's Avatar
 
Join Date: 10-13-03
Location: Statesboro, Georgia
Posts: 2,953
iTrader: 0 / 0%
South is a web professional of the highest orderSouth is a web professional of the highest orderSouth is a web professional of the highest orderSouth is a web professional of the highest orderSouth is a web professional of the highest orderSouth is a web professional of the highest orderSouth is a web professional of the highest orderSouth is a web professional of the highest orderSouth is a web professional of the highest orderSouth is a web professional of the highest orderSouth is a web professional of the highest order
You can make custom cursors for your site. I for one hate it when a site does that, but you can do it with css
__________________
"The modern definition of 'racist' is someone who is winning an argument with a liberal."

Statesboro Web Design | Southland Magazine
South is offline  
Add Post to del.icio.us
Reply With Quote
Old 07-01-2005, 10:21 AM   #3 (permalink)
No Longer Here
 
Join Date: 09-27-03
Location: State College, PA
Posts: 9,354
iTrader: 0 / 0%
Latest Blog:
None

Jazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebody
http://www.dynamicdrive.com/dynamicindex13/index.html
Jazzee is offline  
Add Post to del.icio.us
Reply With Quote
Old 07-01-2005, 11:44 AM   #4 (permalink)
Inactive
 
Join Date: 05-19-05
Posts: 66
iTrader: 0 / 0%
Latest Blog:
None

tuzaj is liked by many
Thanks again, Sara. im also wondering if you know of the script of this cross cursor with a text beside it. Like one on the website below.

cross cursor

Thanks.
tuzaj is offline  
Add Post to del.icio.us
Reply With Quote
Old 07-01-2005, 12:06 PM   #5 (permalink)
No Longer Here
 
Join Date: 09-27-03
Location: State College, PA
Posts: 9,354
iTrader: 0 / 0%
Latest Blog:
None

Jazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebody
The parts of the source that look like they are part of that:

Code:
<body onmousemove="cursor()">
Code:
<script language=javascript src="http://www.boomspeed.com/alienic/customtrail.js"></script>
Code:
<font color=gray><FONT FACE="tahoma"><style>body</style><font size=1px>e<b>n<u>d</b>les</u>s<b>l0</b>ve `#</span></font>

http://www.boomspeed.com/alienic/customtrail.js (from the second code above) :

Code:
function cursor() { trail.style.visibility="visible" trail.style.position="absolute" trail.style.left=event.clientX+10 trail.style.top=event.clientY }
Jazzee is offline  
Add Post to del.icio.us
Reply With Quote
Old 07-01-2005, 12:28 PM   #6 (permalink)
Inactive
 
Join Date: 05-19-05
Posts: 66
iTrader: 0 / 0%
Latest Blog:
None

tuzaj is liked by many
Hi thanks, Sara. unfortunately, im not really good at scripts so just for some clarifaction, is this the way it look like:

Quote:
<body onmousemove="cursor()">

<script language=javascript src="http://www.boomspeed.com/alienic/customtrail.js"></script>


function cursor()
{
trail.style.visibility="visible"
trail.style.position="absolute"
trail.style.left=event.clientX+10
trail.style.top=event.clientY
}


<font color=gray><FONT FACE="tahoma"><style>body</style><font size=1px>e<b>n<u>d</b>les</u>s<b>l0</b>ve `#</span></font>

Pls correct me if im wrong
tuzaj is offline  
Add Post to del.icio.us
Reply With Quote
Old 07-01-2005, 07:00 PM   #7 (permalink)
No Longer Here
 
Join Date: 09-27-03
Location: State College, PA
Posts: 9,354
iTrader: 0 / 0%
Latest Blog:
None

Jazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebody
I think it should be like this:


Code:
<script type="text/javascript"> function cursor() { trail.style.visibility="visible" trail.style.position="absolute" trail.style.left=event.clientX+10 trail.style.top=event.clientY } </script> <body onmousemove="cursor()"> <font color=gray><FONT FACE="tahoma"><style>body</style><font size=1px>e<b>n<u>d</b>les</u>s<b>l0</b>ve `#</span></font>
I don't know javascript, but that should work.
Jazzee is offline  
Add Post to del.icio.us
Reply With Quote
Old 07-01-2005, 07:21 PM   #8 (permalink)
Inactive
 
sundancerz's Avatar
 
Join Date: 06-25-04
Location: Southern Nevada
Posts: 488
iTrader: 0 / 0%
Latest Blog:
None

sundancerz is just really nicesundancerz is just really nicesundancerz is just really nicesundancerz is just really nicesundancerz is just really nicesundancerz is just really nicesundancerz is just really nicesundancerz is just really nicesundancerz is just really nicesundancerz is just really nice
Quote:
I don't know javascript, but that should work.
Ahaaa...damn Sara...I'm impressed, you could have fooled me.
sundancerz is offline  
Add Post to del.icio.us
Reply With Quote
Old 07-02-2005, 09:34 AM   #9 (permalink)
Inactive
 
Join Date: 05-19-05
Posts: 66
iTrader: 0 / 0%
Latest Blog:
None

tuzaj is liked by many
Quote:
Originally Posted by Jazzee
I think it should be like this:


Code:
<script type="text/javascript"> function cursor() { trail.style.visibility="visible" trail.style.position="absolute" trail.style.left=event.clientX+10 trail.style.top=event.clientY } </script> <body onmousemove="cursor()"> <font color=gray><FONT FACE="tahoma"><style>body</style><font size=1px>e<b>n<u>d</b>les</u>s<b>l0</b>ve `#</span></font>
I don't know javascript, but that should work.
Hi Sara i really appreciate the help unfortunately the cursor wouldn't work well. The text wouldn't go along with the cursor. im kind of confuse though. perhaps i got the wrong way of puting it in a lay-out.
tuzaj is offline  
Add Post to del.icio.us
Reply With Quote
Old 07-02-2005, 10:07 AM   #10 (permalink)
No Longer Here
 
Join Date: 09-27-03
Location: State College, PA
Posts: 9,354
iTrader: 0 / 0%
Latest Blog:
None

Jazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebody
Instead of this:

Code:
<font color=gray><FONT FACE="tahoma"><style>body</style><font size=1px>e<b>n<u>d</b>les</u>s<b>l0</b>ve `#</span></font>
Try this:

Code:
<span id="trail" style="visibility:hidden"><font color=gray><FONT FACE="tahoma"><style>body</style><font size=1px>e<b>n<u>d</b>les</u>s<b>l0</b>ve `#</font></span>
Jazzee is offline  
Add Post to del.icio.us
Reply With Quote
Old 07-02-2005, 11:54 AM   #11 (permalink)
Inactive
 
Join Date: 05-19-05
Posts: 66
iTrader: 0 / 0%
Latest Blog:
None

tuzaj is liked by many
Thanks Sara. Cool!
tuzaj is offline  
Add Post to del.icio.us
Reply With Quote
Old 07-02-2005, 12:11 PM   #12 (permalink)
No Longer Here
 
Join Date: 09-27-03
Location: State College, PA
Posts: 9,354
iTrader: 0 / 0%
Latest Blog:
None

Jazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebody
np
Jazzee is offline  
Add Post to del.icio.us
Reply With Quote
Old 04-18-2008, 07:50 PM   #13 (permalink)
Junior Member
 
Join Date: 04-18-08
Posts: 2
iTrader: 0 / 0%
Latest Blog:
None

Alex A is liked by many
Scrolling

I am using the code here and it works just fine (thanks very much!), until the page is long enough to scroll vertically. Then the text "attached" to the cursor scrolls with the page and moves away from the cursor.

Does anyone have any suggestions on how to fix that? If the page is long enough, the "attached" text will scroll right out of view. Thanks.
Alex A is offline  
Add Post to del.icio.us
Reply With Quote
Go Back   Webmaster Forum > Web Development > Web Design Lobby

Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Image Map and Cursor Rushtrack Coding Forum 3 01-22-2008 06:08 PM
magnifying lens cursor http Coding Forum 3 01-19-2007 07:36 AM
Weird WinXP problem w/ icons and cursor thebassman Computers & Internet 10 01-24-2006 04:38 PM
How do I change the mouse cursor on my website? Jason Web Design Lobby 5 06-08-2004 07:13 AM


Sponsor Links
Get exposure! Get exposure! Find Scripts Web Hosting Directory Get exposure! SEO Blog


All times are GMT -7. The time now is 10:34 PM.
© Copyright 2008 V7 Inc