Advertise Here

Author Topic: how to make text move  (Read 46835 times)

0 Members and 1 Guest are viewing this topic.

Offline mario

  • SMF For Free Full Member
  • *
  • Posts: 103
  • po po po po po po pooooooo po po po po po po poo
    • View Profile
    • omgraphics

  • Total Badges: 15
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
how to make text move
« on: June 07, 2008, 08:14:25 am »
would anyone know how to make the text move at the top of the broweser like at this site-splashhotel.info i know this code here but i tried that in the html while editing it with dreamweaver and it didnt work some1 plz tell me how


Offline LaundryLady

  • Helpers
  • *
  • Posts: 3253
  • Internet Challenged
    • View Profile

  • Total Badges: 26
    Badges: (View All)
    Seventh year Anniversary Sixth year Anniversary Search Poll Voter Level 5
Re: how to make text move
« Reply #1 on: June 07, 2008, 08:25:23 am »
Try
Code: [Select]
<marquee>Your Text or Image</marquee>


And I Play:  Mafia-Mandemz

Offline Tspeed

  • SMF For Free Member
  • *
  • Posts: 35
    • View Profile
    • ShutterBug Stroll.Com

  • Total Badges: 10
    Badges: (View All)
    Topic Starter Combination Level 2 Level 1 10 Posts
Re: how to make text move
« Reply #2 on: June 07, 2008, 08:47:29 am »
And here is a tag with a few more attributes :)
<marquee behavior="" direction="" loop="" style="color: #33ff33;" bgcolor="#000080"/>


Offline mario

  • SMF For Free Full Member
  • *
  • Posts: 103
  • po po po po po po pooooooo po po po po po po poo
    • View Profile
    • omgraphics

  • Total Badges: 15
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Re: how to make text move
« Reply #3 on: June 09, 2008, 07:09:40 pm »
i know the marquee one but it didnt work maybe ill try the 2nd one but where in that would i add my text?


Offline simply sibyl

  • Helpers
  • *
  • Posts: 14347
  • On hiatus
    • View Profile
    • The Tent Dwellers

  • Total Badges: 31
    Badges: (View All)
    Level 6 Poll Voter Webmaster Arcade Highscore Windows User
Re: how to make text move
« Reply #4 on: June 09, 2008, 07:12:46 pm »
Your text goes in between the marquee tags

<marquee behavior="" direction="" loop="" style="color: #33ff33;" bgcolor="#000080"/> text goes here </marquee>

For information on settings for the marquee tag  (behaviour, direction, style, etc.) check this site out:
http://www.htmlcodetutorial.com/_MARQUEE.html
« Last Edit: June 09, 2008, 07:15:09 pm by simply sibyl »

Offline mario

  • SMF For Free Full Member
  • *
  • Posts: 103
  • po po po po po po pooooooo po po po po po po poo
    • View Profile
    • omgraphics

  • Total Badges: 15
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Re: how to make text move
« Reply #5 on: June 09, 2008, 10:57:56 pm »
tyvm ill go try it now xD well it dosent work at the title =\ like where it says Mozzila *site adress*
« Last Edit: June 09, 2008, 11:06:37 pm by mario »


guest4485

  • Guest
Re: how to make text move
« Reply #6 on: June 09, 2008, 11:26:57 pm »
Hi, If I may make a suggestion I think it would be better not to use dream weaver for HTML and JavaScript. I would just use a text editor like Word Pad or DiDaPro. I use DiDa pro because it has a preview feature but a browser can be used for that so its your choice. Also i'd use the freewebs HTML editor to host your site and use dot.tk as a way to get rid of the embarrising freewebs.com part.

Offline simply sibyl

  • Helpers
  • *
  • Posts: 14347
  • On hiatus
    • View Profile
    • The Tent Dwellers

  • Total Badges: 31
    Badges: (View All)
    Level 6 Poll Voter Webmaster Arcade Highscore Windows User
Re: how to make text move
« Reply #7 on: June 09, 2008, 11:35:28 pm »
mario..  ahhhh  I know what you are wanting to do now and you would have to use javascript I believe to accomplish that

Offline Tspeed

  • SMF For Free Member
  • *
  • Posts: 35
    • View Profile
    • ShutterBug Stroll.Com

  • Total Badges: 10
    Badges: (View All)
    Topic Starter Combination Level 2 Level 1 10 Posts
Re: how to make text move
« Reply #8 on: June 10, 2008, 06:56:24 am »
Mario , do a google  search for "scrolling title bar script"

I just found this script in a few seconds lol

Scrolling Title

This script scrolls the title.
Paste the following script in the <HEAD> section of your page. Change the variable msg to your web page title. Change the scroll speed by changing the value of the variable time_length. Here it is 100, which means that each character will change it's position after 100 milliseconds, i.e a scroll speed of 10 pixels/second.

<script language="javascript">
// (c) Premshree Pillai
// http://www.qiksearch.com
// premshree@hotmail.com
// Use freely as long as this message is intact.
var msg = " Your Web Page Title ";
var pos = 0;
var spacer = " ... ";
var time_length = 100;
function ScrollTitle()
{
document.title = msg.substring(pos, msg.length) + spacer + msg.substring(0, pos);
pos++;
if (pos > msg.length) pos=0;
window.setTimeout("ScrollTitle()",time_length);
}
ScrollTitle();
</script>


Here is another
http://www.hscripts.com/scripts/JavaScript/title-scrol.php



You'll find many more as well , you'll just have to play with them till you find one that will work here.




Offline simply sibyl

  • Helpers
  • *
  • Posts: 14347
  • On hiatus
    • View Profile
    • The Tent Dwellers

  • Total Badges: 31
    Badges: (View All)
    Level 6 Poll Voter Webmaster Arcade Highscore Windows User
Re: how to make text move
« Reply #9 on: June 10, 2008, 09:10:43 am »
That first one works.
Could get abit annoying though cus it also moves it on the browser tabs and in your taskbar.

Offline Tspeed

  • SMF For Free Member
  • *
  • Posts: 35
    • View Profile
    • ShutterBug Stroll.Com

  • Total Badges: 10
    Badges: (View All)
    Topic Starter Combination Level 2 Level 1 10 Posts
Re: how to make text move
« Reply #10 on: June 10, 2008, 09:53:54 am »
heh , i didnt try it lol

i used to play with stuff like this but these days i lean more towards trying to keep things a little less tricked out to avoid conflicts or annoyances that make my head swim lol
In fact i'm about to go remove the birds chirping on my site that i added just yesterday, love the sounds but it hangs things up just as stuff like this title script could.

Always think twice before adding scripts or embedding things, you may just be turning off your visitors for some little thing that only you think is cool


Offline simply sibyl

  • Helpers
  • *
  • Posts: 14347
  • On hiatus
    • View Profile
    • The Tent Dwellers

  • Total Badges: 31
    Badges: (View All)
    Level 6 Poll Voter Webmaster Arcade Highscore Windows User
Re: how to make text move
« Reply #11 on: June 10, 2008, 09:56:16 am »
Always think twice before adding scripts or embedding things, you may just be turning off your visitors for some little thing that only you think is cool

That is so true.   A forum is afterall a discussion board and if you put too many things on it , it can not only get very annoying but can possibly slow the forum down.    With forums, just like webpages, you want it to be organized, to look good, but to try to keep graphics and other things to a minimum so that it runs fast and they are able to post without huge lags due to alot of codes/graphics.

Offline coder#1

  • SMF For Free Newbie
  • *
  • Posts: 12
    • View Profile

  • Total Badges: 10
    Badges: (View All)
    Topic Starter Combination Level 2 Level 1 10 Posts
Re: how to make text move
« Reply #12 on: October 19, 2008, 01:27:43 pm »
ok this dosent wor idk if im doing it wronge or what but alwell
« Last Edit: October 19, 2008, 01:29:23 pm by coder#1 »

Offline Suki The Saluki

  • SMF For Free Sponsors
  • *
  • Posts: 827
    • View Profile

  • Total Badges: 14
    Badges: (View All)
    Topic Starter Combination Level 3 Level 2 Level 1
Re: how to make text move
« Reply #13 on: October 19, 2008, 01:38:17 pm »
Tried it heres the result.

<marquee behavior="" direction="" loop="" style="color: #33ff33;" bgcolor="#000080"/> Hello  </marquee>

And it does'nt work or would it not work on posts?

Offline simply sibyl

  • Helpers
  • *
  • Posts: 14347
  • On hiatus
    • View Profile
    • The Tent Dwellers

  • Total Badges: 31
    Badges: (View All)
    Level 6 Poll Voter Webmaster Arcade Highscore Windows User
Re: how to make text move
« Reply #14 on: October 19, 2008, 02:02:31 pm »
You can use html to do it in the header/footer/an html portal block.
You can do it in a post ONLY if you are the admin and ONLY if you use the html tags to do it, otherwise you have to use bbcode and there are no settings for it.

Using BBCode in a Post:
Code: [Select]
[move]text here[/move]

Using HTML in a Post:
(Only Admins can do this)

Code: [Select]
[html]  

put the marquee code here 

[/html]

Tutorial site for the marquee tag  (html)
http://www.lissaexplains.com/fun3.shtml
« Last Edit: October 19, 2008, 02:04:44 pm by simply sibyl »

 

Related Topics

  Subject / Started by Replies Last post
12 Replies
14319 Views
Last post November 26, 2006, 05:54:26 am
by kieren22
3 Replies
1407 Views
Last post November 16, 2007, 05:10:12 am
by deathwilldie
3 Replies
1566 Views
Last post May 07, 2008, 05:13:37 pm
by lmaf0
13 Replies
14254 Views
Last post November 16, 2008, 12:29:57 am
by [JeReMy]
2 Replies
9880 Views
Last post June 04, 2011, 10:21:16 am
by Marty-LR