Webmaster Forum


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

Coding Forum Problems with your code? Let's hear about it.

Easy Date   ClickBooth Network   V7N Directory

Reply
 
LinkBack Thread Tools Display Modes
Old 07-05-2006, 09:59 AM   #1 (permalink)
Inactive
 
Join Date: 07-05-06
Posts: 6
iTrader: 0 / 0%
Latest Blog:
None

SteveG36 is liked by many
Getting Quote Boxes To Fade

Hi there,

I've just created some changing quote boxes in Java and I am ahppy with the layout and the speed of change etc...

But I would like to make them fade in and out instead of just changing the way they do.

Does anyone know what I need to add or what I need to do to the script to make this happen?

Many thanks in advance.

Steve
SteveG36 is offline  
Add Post to del.icio.us
Reply With Quote
Sponsored Links
SEO Hosting by HostGator  Advertise Here  Buy Blog Links
Old 07-05-2006, 10:00 AM   #2 (permalink)
Inactive
 
Join Date: 07-05-06
Posts: 6
iTrader: 0 / 0%
Latest Blog:
None

SteveG36 is liked by many
It would also help if I added the url...

http://www.moss-consulting.com/new/index_layer.html
SteveG36 is offline  
Add Post to del.icio.us
Reply With Quote
Old 07-05-2006, 10:01 AM   #3 (permalink)
Empress™
 
chicgeek's Avatar
 
Join Date: 08-19-04
Location: York, UK
Posts: 18,003
iTrader: 0 / 0%
Latest Blog:
My Favourite Poem

chicgeek is a web professional of the highest orderchicgeek is a web professional of the highest orderchicgeek is a web professional of the highest orderchicgeek is a web professional of the highest orderchicgeek is a web professional of the highest orderchicgeek is a web professional of the highest orderchicgeek is a web professional of the highest orderchicgeek is a web professional of the highest orderchicgeek is a web professional of the highest orderchicgeek is a web professional of the highest orderchicgeek is a web professional of the highest order
Can you show us what you have? Or an example of what you are emulating?

Edit: Neeevermind

Are you implying the right box?
__________________
laura / chicgeek
soprano & web designer
laurakishimoto.ca
chıcgeeĸ @ flickr
chicgeek is offline  
Add Post to del.icio.us
Reply With Quote
Old 07-05-2006, 10:09 AM   #4 (permalink)
Inactive
 
Join Date: 07-05-06
Posts: 6
iTrader: 0 / 0%
Latest Blog:
None

SteveG36 is liked by many
Hi - not sure what you mean by implying the right box...

The quotes are on a separate page set in an IFrame. The url for the quotes page is..

http://www.moss-consulting.com/new/quotes.html
SteveG36 is offline  
Add Post to del.icio.us
Reply With Quote
Old 07-05-2006, 10:33 AM   #5 (permalink)
v7n Mentor
 
JamieJelly's Avatar
 
Join Date: 03-09-06
Location: London UK
Posts: 2,802
iTrader: 0 / 0%
JamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest order
if you want some fading action, you may want to check out scriptaculous javascript library.

http://script.aculo.us
__________________
Bank charges
JamieJelly is offline  
Add Post to del.icio.us
Reply With Quote
Old 07-05-2006, 10:38 AM   #6 (permalink)
Inactive
 
Join Date: 07-05-06
Posts: 6
iTrader: 0 / 0%
Latest Blog:
None

SteveG36 is liked by many
Thanks. It looks like a useful site. But unfortunatley it's not going to provide me with the one line of code that I need to make my quotes fade in and out....
SteveG36 is offline  
Add Post to del.icio.us
Reply With Quote
Old 07-05-2006, 10:39 AM   #7 (permalink)
Empress™
 
chicgeek's Avatar
 
Join Date: 08-19-04
Location: York, UK
Posts: 18,003
iTrader: 0 / 0%
Latest Blog:
My Favourite Poem

chicgeek is a web professional of the highest orderchicgeek is a web professional of the highest orderchicgeek is a web professional of the highest orderchicgeek is a web professional of the highest orderchicgeek is a web professional of the highest orderchicgeek is a web professional of the highest orderchicgeek is a web professional of the highest orderchicgeek is a web professional of the highest orderchicgeek is a web professional of the highest orderchicgeek is a web professional of the highest orderchicgeek is a web professional of the highest order
... Have you looked?
__________________
laura / chicgeek
soprano & web designer
laurakishimoto.ca
chıcgeeĸ @ flickr
chicgeek is offline  
Add Post to del.icio.us
Reply With Quote
Old 07-05-2006, 10:41 AM   #8 (permalink)
Inactive
 
Join Date: 07-05-06
Posts: 6
iTrader: 0 / 0%
Latest Blog:
None

SteveG36 is liked by many
Quote:
Originally Posted by chicgeek
... Have you looked?
Sure I've looked... I just spent quite a bit of time on the site...
SteveG36 is offline  
Add Post to del.icio.us
Reply With Quote
Old 07-05-2006, 10:56 AM   #9 (permalink)
v7n Mentor
 
imaginemn's Avatar
 
Join Date: 02-18-04
Location: Minneapolis, Minnesota
Posts: 1,941
iTrader: 0 / 0%
imaginemn is a name known to allimaginemn is a name known to allimaginemn is a name known to allimaginemn is a name known to allimaginemn is a name known to allimaginemn is a name known to allimaginemn is a name known to allimaginemn is a name known to allimaginemn is a name known to allimaginemn is a name known to allimaginemn is a name known to all
Send a message via MSN to imaginemn Send a message via Yahoo to imaginemn Send a message via Skype™ to imaginemn
You need some type of fade effect function. Here is an example. This should give you an idea on how to inegrate both scripts together to make it work.

Quote:
<script language="JavaScript1.2">
hex=255 // Initial color value.

function fadetext(){
if(hex>0) { //If color is not black yet
hex-=11; // increase color darkness
document.getElementById("sample").style.color="rgb ("+hex+","+hex+","+hex+")";
setTimeout("fadetext()",20);
}
else
hex=255 //reset hex value
}

</script>

<div id="sample" style="width:100%"><h3>slowly fade into view</h3></div>
<button onClick="fadetext()">Fade Text</button>
__________________
Imagine Creative Services
Design : Marketing : Multimedia : More
imaginemn is offline  
Add Post to del.icio.us
Reply With Quote
Old 07-06-2006, 07:20 AM   #10 (permalink)
Inactive
 
Join Date: 07-05-06
Posts: 6
iTrader: 0 / 0%
Latest Blog:
None

SteveG36 is liked by many
Quote:
Originally Posted by imaginemn
You need some type of fade effect function. Here is an example. This should give you an idea on how to inegrate both scripts together to make it work.
Many thanks for this. I appreciate your time and trouble.

I'm happy to say I have cracked the job now. You can see what I did in the source code.

http://www.moss-consulting.com/new/index_layer.html
SteveG36 is offline  
Add Post to del.icio.us
Reply With Quote
Go Back   Webmaster Forum > Web Development > Web Design Lobby > Coding Forum

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 rotate fade... drew68 Web Usability 1 11-19-2006 02:28 PM
is there such a thing as a fade rotating image javascript? drew68 Coding Forum 8 09-14-2006 01:44 AM
HOW DO I FADE AN IMAGE INTO ANOTHER?? marcsam Graphic Design Forum 11 05-13-2006 03:16 PM
Fade in on graphics & links - javascript ? tonya Web Design Lobby 4 05-23-2004 12:54 PM
GALAXY FADE TranceSpeeder Graphic Design Forum 15 01-14-2004 11:17 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 04:51 AM.
© Copyright 2008 V7 Inc