Webmaster Forum


Go Back   Webmaster Forum > Web Development > Web Design Lobby

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


Reply
 
LinkBack Thread Tools Display Modes
Share |
  #1 (permalink)  
Old 07-01-2005, 09:48 AM
Member
Latest Blog:
None

 
Join Date: 05-19-05
Posts: 66
iTrader: 0 / 0%
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.
 
Reply With Quote
  #2 (permalink)  
Old 07-01-2005, 10:13 AM
South's Avatar
v7n Mentor
Latest Blog:
None

 
Join Date: 10-13-03
Posts: 2,488
iTrader: 1 / 100%
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
__________________
Angry Mob Member
 
Reply With Quote
  #3 (permalink)  
Old 07-01-2005, 10:21 AM
No Longer Here
Latest Blog:
None

 
Join Date: 09-27-03
Location: State College, PA
Posts: 4,273
iTrader: 0 / 0%
http://www.dynamicdrive.com/dynamicindex13/index.html
 
Reply With Quote
  #4 (permalink)  
Old 07-01-2005, 11:44 AM
Member
Latest Blog:
None

 
Join Date: 05-19-05
Posts: 66
iTrader: 0 / 0%
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.
 
Reply With Quote
  #5 (permalink)  
Old 07-01-2005, 12:06 PM
No Longer Here
Latest Blog:
None

 
Join Date: 09-27-03
Location: State College, PA
Posts: 4,273
iTrader: 0 / 0%
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 }
 
Reply With Quote
  #6 (permalink)  
Old 07-01-2005, 12:28 PM
Member
Latest Blog:
None

 
Join Date: 05-19-05
Posts: 66
iTrader: 0 / 0%
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
 
Reply With Quote
  #7 (permalink)  
Old 07-01-2005, 07:00 PM
No Longer Here
Latest Blog:
None

 
Join Date: 09-27-03
Location: State College, PA
Posts: 4,273
iTrader: 0 / 0%
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.
 
Reply With Quote
  #8 (permalink)  
Old 07-01-2005, 07:21 PM
sundancerz's Avatar
v7n Mentor
Latest Blog:
None

 
Join Date: 06-25-04
Location: Phoenix Arizona
Posts: 626
iTrader: 0 / 0%
Quote:
I don't know javascript, but that should work.
Ahaaa...damn Sara...I'm impressed, you could have fooled me.
__________________
|SEO Help|SEO for Hire!
 
Reply With Quote
  #9 (permalink)  
Old 07-02-2005, 09:34 AM
Member
Latest Blog:
None

 
Join Date: 05-19-05
Posts: 66
iTrader: 0 / 0%
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.
 
Reply With Quote
  #10 (permalink)  
Old 07-02-2005, 10:07 AM
No Longer Here
Latest Blog:
None

 
Join Date: 09-27-03
Location: State College, PA
Posts: 4,273
iTrader: 0 / 0%
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>
 
Reply With Quote
  #11 (permalink)  
Old 07-02-2005, 11:54 AM
Member
Latest Blog:
None

 
Join Date: 05-19-05
Posts: 66
iTrader: 0 / 0%
Thanks Sara. Cool!
 
Reply With Quote
  #12 (permalink)  
Old 07-02-2005, 12:11 PM
No Longer Here
Latest Blog:
None

 
Join Date: 09-27-03
Location: State College, PA
Posts: 4,273
iTrader: 0 / 0%
np
 
Reply With Quote
  #13 (permalink)  
Old 04-18-2008, 07:50 PM
Junior Member
 
Join Date: 04-18-08
Posts: 2
iTrader: 0 / 0%
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.
 
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

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


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


V7N Network
Get exposure! V7N I Love Photography V7N SEO Blog V7N Directory


All times are GMT -7. The time now is 02:19 PM.
Powered by vBulletin
Copyright © 2000-2013 Jelsoft Enterprises Limited.
Copyright © 2003 - 2013 Escalate Media LP




Search Engine Optimization by vBSEO 3.6.0 RC 2 ©2011, Crawlability, Inc.