SitePoint Sponsor |
|
User Tag List
Results 1 to 15 of 15
Thread: Another simple question
-
Jul 31, 2006, 01:46 #1
- Join Date
- Jul 2006
- Posts
- 5
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Another simple question
Hi,
I'm trying to make my heading text 'flash' in dreamweaver....can anyone help me with this?
Cheers
S
-
Jul 31, 2006, 02:39 #2
- Join Date
- Aug 2004
- Location
- Manchester UK
- Posts
- 13,807
- Mentioned
- 158 Post(s)
- Tagged
- 3 Thread(s)
flash as in change colour or flash as in the program?
Mike Swiffin - Community Team Advisor
Only a woman can read between the lines of a one word answer.....
-
Jul 31, 2006, 02:39 #3
- Join Date
- Jul 2006
- Posts
- 5
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Change colour...
Cheers
-
Jul 31, 2006, 03:05 #4
- Join Date
- Jan 2004
- Location
- Melbourne, Australia
- Posts
- 7,305
- Mentioned
- 1 Post(s)
- Tagged
- 1 Thread(s)
Create an animated .GIF or use <blink></blink> (not sure what browsers support it).
-
Jul 31, 2006, 03:32 #5
- Join Date
- Sep 2003
- Location
- KSA - UAE
- Posts
- 9,457
- Mentioned
- 8 Post(s)
- Tagged
- 1 Thread(s)
Are you sure this is a good thing to do snowyriver?
Egor, I believe <blink> is not a standard HTML tag!
it works in FF but not it in IE! also in Netscape it could cause the whole page to blink!
-
Jul 31, 2006, 04:01 #6
- Join Date
- Aug 2004
- Location
- Manchester UK
- Posts
- 13,807
- Mentioned
- 158 Post(s)
- Tagged
- 3 Thread(s)
quick bit of Javascript should do it....
Code:<body onload="changeColour('blinky');"> <script type="text/javascript"><!-- function changeColour(elementId) { var interval = 500; var colour1 = "#ff00ff", colour2 = "black"; if (document.getElementById) { var element = document.getElementById(elementId); element.style.color = (element.style.color == colour1) ? colour2 : colour1; setTimeout("changeColour('" + elementId + "')", interval); } } //--></script> <p id="blinky">This should change colour</p>
Mike Swiffin - Community Team Advisor
Only a woman can read between the lines of a one word answer.....
-
Aug 1, 2006, 06:58 #7
don't!
monkey - the rest is history
-
Aug 1, 2006, 12:35 #8
- Join Date
- Aug 2004
- Location
- Manchester UK
- Posts
- 13,807
- Mentioned
- 158 Post(s)
- Tagged
- 3 Thread(s)
Originally Posted by boxhead
(that is if you are referring to not using flashing text and not to using my javascript......)Mike Swiffin - Community Team Advisor
Only a woman can read between the lines of a one word answer.....
-
Aug 2, 2006, 01:48 #9
Originally Posted by spikeZ
monkey - the rest is history
-
Sep 16, 2006, 19:45 #10
- Join Date
- May 2006
- Location
- Ljubljana, Slovenija, Europe
- Posts
- 34
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Originally Posted by snowyriver
Code:<div class="blink">text to blink</div>
Code:div.blink { text-decoration: blink; }
See my computing-related homepage: http://tadej-ivan.50webs.com/.
-
Sep 17, 2006, 14:14 #11
- Join Date
- Aug 2004
- Location
- Manchester UK
- Posts
- 13,807
- Mentioned
- 158 Post(s)
- Tagged
- 3 Thread(s)
cant see any blinking text on your page satyr, and AFAIK that doesn't work in all browsers.
Mike Swiffin - Community Team Advisor
Only a woman can read between the lines of a one word answer.....
-
Sep 18, 2006, 08:52 #12
- Join Date
- May 2006
- Posts
- 399
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
nice effort tho
-
Sep 19, 2006, 09:17 #13
- Join Date
- May 2006
- Location
- Ljubljana, Slovenija, Europe
- Posts
- 34
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Originally Posted by spikeZ
satyrSee my computing-related homepage: http://tadej-ivan.50webs.com/.
-
Sep 19, 2006, 12:33 #14
- Join Date
- Aug 2004
- Location
- Manchester UK
- Posts
- 13,807
- Mentioned
- 158 Post(s)
- Tagged
- 3 Thread(s)
Never mind satyr! live and learn
Mike Swiffin - Community Team Advisor
Only a woman can read between the lines of a one word answer.....
-
Sep 26, 2006, 08:17 #15
- Join Date
- Apr 2006
- Posts
- 18
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
It blinks on in firefox. Not in IE and opera. Also a horizontal and vertical scroll bar appears in firefox and opera but not in IE.
Kirtan
Bookmarks