drew_n's profile

1.4K Messages

 • 

262.9K Points

Monday, October 13th, 2014 5:40 PM

Closed

How can I add moving text to my site?

The scrolling text element from the old desktop Sitebuilder is no longer available in Sitebuilder Plus.  The java element could cause problems and security warnings on browsrs running older versions of Java.  Here are some code snippets that you can use that are HTML.  You can add them into an HTML box and customize the text.

1) Slide in text.  The text will slide in from right to left and stop.

<marquee behavior="slide" direction="left">Your slide-in text goes here</marquee>

2) Continuous scrolling text.  This text will scroll from right to left and contiune off the left and then restart from the right.

<marquee behavior="scroll" direction="left">Your scrolling text goes here</marquee>

3) Bouncing text.  This text will scroll back and forth.

<marquee behavior="alternate">Your bouncing text goes here</marquee>

4) Upward scrolling:

<marquee  behavior="scroll" direction="up">Your upward scrolling text goes here</marquee>

5) Scroll speed.  Use the scrollamount variable to change the speed of the scroll.

<marquee behavior="scroll" direction="left" scrollamount="1">Slow scroll speed</marquee>
<marquee behavior="scroll" direction="left" scrollamount="10">Medium scroll speed</marquee>
<marquee behavior="scroll" direction="left" scrollamount="20">Fast scroll speed</marquee>

6) Scrolling image. 

<marquee behavior="scroll" direction="left"><img src="imagename" width="100" height="100" alt="alt-text" /></marquee>

7) Scrolling image with text

<marquee behavior="scroll" direction="left">
<img src="imagename" width="100" height="100" alt="alt-text" />
<p>Sample text under a <a href="/html/codes/scrolling_images.cfm">scrolling image</a>.</p>
</marquee>

8) Falling text.  Play with the variables to see the different effects. This one is more advanced, including multiple variables.

<marquee style="z-index:2;position:absolute;left:50;top:85;font-family:Cursive;font-size:14pt;color:ffcc00;height:449;"scrollamount="2" direction="down">Text... or snow?!</marquee><marquee style="z-index:2;position:absolute;left:95;font-family:Cursive;font-size:14pt;color:ffcc00;height:136;"direction="down">Text... or snow?!</marquee><marquee style="z-index:2;position:absolute;left:15;top:66;font-family:Cursive;font-size:14pt;color:ffcc00;height:410;"scrollamount="2" direction="down">Text... or snow?!</marquee><marquee style="z-index:2;position:absolute;left:135;top:24;font-family:Cursive;font-size:14pt;color:ffcc00;height:162;"scrollamount="2" direction="down">Text... or snow?!</marquee><marquee style="z-index:2;position:absolute;left:206;top:23;font-family:Cursive;font-size:14pt;color:ffcc00;height:94;"scrollamount="3" direction="down">Text... or snow?!</marquee><marquee style="z-index:2;position:absolute;left:46;top:95;font-family:Cursive;font-size:14pt;color:ffcc00;height:44;"scrollamount="5" direction="down">Text... or snow?!</marquee><marquee style="z-index:2;position:absolute;left:8;top:97;font-family:Cursive;font-size:14pt;color:ffcc00;height:212;"scrollamount="7" direction="down">Text... or snow?!</marquee><marquee style="z-index:2;position:absolute;left:94;top:48;font-family:Cursive;font-size:14pt;color:ffcc00;height:41;"scrollamount="2" direction="down">Text... or snow?!</marquee><marquee style="z-index:2;position:absolute;left:46;top:36;font-family:Cursive;font-size:14pt;color:ffcc00;height:170;"scrollamount="6" direction="down">Text... or snow?!</marquee><marquee style="z-index:2;position:absolute;left:207;top:88;font-family:Cursive;font-size:14pt;color:ffcc00;height:420;"scrollamount="4" direction="down">Text... or snow?!</marquee><marquee style="z-index:2;position:absolute;left:129;top:19;font-family:Cursive;font-size:14pt;color:ffcc00;height:365;"scrollamount="1" direction="down">Text... or snow?!</marquee><marquee style="z-index:2;position:absolute;left:203;top:84;font-family:Cursive;font-size:14pt;color:ffcc00;height:126;"scrollamount="6" direction="down">Text... or snow?!</marquee><marquee style="z-index:2;position:absolute;left:229;top:49;font-family:Cursive;font-size:14pt;color:ffcc00;height:3;"scrollamount="7" direction="down">Text... or snow?!</marquee><marquee style="z-index:2;position:absolute;left:125;top:90;font-family:Cursive;font-size:14pt;color:ffcc00;height:309;"scrollamount="4" direction="down">Text... or snow?!</marquee><marquee style="z-index:2;position:absolute;left:216;top:39;font-family:Cursive;font-size:14pt;color:ffcc00;height:221;"scrollamount="1" direction="down">Text... or snow?!</marquee><marquee style="z-index:2;position:absolute;left:167;top:13;font-family:Cursive;font-size:14pt;color:ffcc00;height:362;"scrollamount="4" direction="down">Text... or snow?!</marquee><marquee style="z-index:2;position:absolute;left:303;top:58;font-family:Cursive;font-size:14pt;color:ffcc00;height:449;"scrollamount="3" direction="down">Text... or snow?!</marquee><marquee style="z-index:2;position:absolute;left:168;top:90;font-family:Cursive;font-size:14pt;color:ffcc00;height:198;"scrollamount="5" direction="down">Text... or snow?!</marquee><marquee style="z-index:2;position:absolute;left:280;top:88;font-family:Cursive;font-size:14pt;color:ffcc00;height:329;"scrollamount="5" direction="down">Text... or snow?!</marquee><marquee style="z-index:2;position:absolute;left:183;top:77;font-family:Cursive;font-size:14pt;color:ffcc00;height:94;"scrollamount="1" direction="down">Text... or snow?!</marquee><marquee style="z-index:2;position:absolute;left:309;top:35;font-family:Cursive;font-size:14pt;color:ffcc00;height:123;"scrollamount="3" direction="down">Text... or snow?!</marquee><span style="position:absolute;top:400px"></span>

This conversation is no longer open for comments or replies and is no longer visible to community members.

No Responses!