tags:

views:

327

answers:

5
+4  Q: 

Html marquee tag

Hi,

Is html marquee tag deprecated ? If yes what are the alternatives for it on the modern browser ?

I want to create a simple marquee effect on my joomla page

+2  A: 

It has been deprecated. You'll probably have to use javascript, implementing it with a jQuery UI effect should be straightforward. Check out this demo, I think this is what you are after: http://remysharp.com/2008/09/10/the-silky-smooth-marquee/

vectran
ok will do that thanks
Anand
A: 

You can use javascript and CSS to generate nice looking elements which will have the functionality of a marquee.

You can have a loot at 11 Obsolete features - HTML5

jScroller is an autoscroller in jQuery

rahul
I like the concept of "having a loot at" something; please don't correct it!
Donal Fellows
A: 

Marquee tag is deprecated by w3c, there is no such tag in HTML Spec. So you should not use this tag at all. In case you need functionality of this tag you should use some jquery plugin, i.e

uthark
+2  A: 

Is html marquee tag deprecated ?

No, it would have had to been part of the language in the first place before it could be deprecated.

It is simply proprietary.

If yes what are the alternatives for it on the modern browser ?

The best option is: Nice, easy to read motionless test.

Scrolling text is excellent for displaying a lot of information, in a small space, non-interactively.

Web browser windows are neither small, nor non-interactive (we have scrollbars), so the benefits of scrolling text are lost and you are left only with the drawbacks (which are that it is harder to read, and distracting when users are trying to read other parts of the page).

The only standard way to achieve scrolling text (if you still want it, despite the horrible drawbacks) is to use JavaScript to dynamically change CSS to move an element about.

David Dorward
I do not want to scroll text, i want to scroll a table of images !!An suggestions on that
Anand
Almost all the problems of scrolling text apply equally to scrolling images. The methods to implement them are also the same.
David Dorward
A: 

You can use javascript to generate the ticker effect.

Tutorial http://www.pagecolumn.com/webparts/ticker.htm

Demo http://www.pagecolumn.com/webparts/ticker_bbc.htm

unigg