Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I know that <marquee> tags are evil.
If it is so bad to have scrolling text, then using JS to get the same effect doesn't make it any better, right?

And suppose I decided to have some scrolling text (gasp), is there some type of CSS(3?) or HTML(5?) way to do this that is technically correct (i.e. not deprecated)?

If there isn't a CSS/HTML solution, should I use:

  • Javascript, which will be heavier to download and might be turned off (is that a pro or a con?), but I get the bonus of being W3C correct and valid and non-deprecated and smart,

or should I use

  • the hated <marquee> (<blink><blink>) tag, which is lightweight (19 bytes!), fully supported by all browsers in all rendering modes and all doctypes (even though it shouldn't be), but is deprecated?

Thanks.

P.S. I think a news ticker is a valid use for marquee-style
P.P.S. If anybody tells me that if I don't want a heavy Javascript solution I should use JQuery because it is lightweight, I will shoot them in the comments

Edit: I'm adding JQuery tag since that seems to be the best way to get attention from a lot of experts on JS questions, and it is not totally unrelated here.

share|improve this question
3  
+1 for the intention to shoot jquery adepts – KooiInc Dec 12 '10 at 19:55
4  
@Koolinc I have nothing against JQuery myself, and I use it quite often. I am only opposed to the train of thought: He said he dosen't want to use JS because it is heavy -> JQuery is lightweight (it says so on the website) -> He only thought of two options, but JQuery is a third one -> He should use JQuery! – baruch Dec 12 '10 at 20:02

8 Answers

up vote 6 down vote accepted

It is not the effect that is bad. The problem with marquee, blink and font tags is that they convey presentation not structure of your content.

share|improve this answer

CSS3 has support for marquee, but it is only supported in a few browsers (Safari and Chrome are the only one, to my knowledge)

http://www.w3.org/TR/css3-marquee/

There are several JQuery plugins that accomplish it, but they come at the expense of loading JQuery (26Kb, heavier than the HTML only solution, but not what I would call heavy)

http://plugins.jquery.com/plugin-tags/marquee

Of course you can easily do it yourself without JQuery, but looking at those plugins may give you ideas.

Another option to consider is to do a small Flash animation.

share|improve this answer
9  
Please do not use Flash for such things – Andreas Kuckartz Feb 22 '11 at 22:59
1  
@Andreas Kuckartz: could you please elaborate a bit more? I don't see how using Flash is worst than, for instance, using JS in this case. The CSS alternative is not considerable at the moment so... – nico Feb 23 '11 at 8:00
1  
Flash is proprietary. It regularly does not separate form/style and content. It is not supported on quite a few "i"-Devices. And - as you correctly wrote - solutions implemented in JavaScript already exist. Therefore I think that Flash is not a reasonable option for scrolling text. – Andreas Kuckartz Feb 24 '11 at 15:04
2  
@Andreas Kuckartz: to be honest I would not have scrolling text at all... anyway I think that for non essential information is not too bad to use it. It works on most Internet capable devices and the vast majority of the public has Flash (or equivalent) installed. You could raise similar issues about JS (what if I have JS disabled?). PS: as for the "i-Devices"... well, don't even get me started on that, I may even go as far as use Flash (which, anyhow, I avoid as much as possible) just to piss off some Apple fanboys!!! :P – nico Feb 24 '11 at 17:16

Here is a nice reference which tries to address the problem, no jQuery, please don't shoot, just js and CSS:

JavaScript Scrolling Box Marquee Replacement

The site seems to be down, here is a cached copy.

Good luck, hope it helps!

share|improve this answer
1  
the link is broken. – Sébastien Gicquel Feb 12 at 16:23
@SébastienGicquel yep, thanks for the heads up, I linked to a cached version of the site. – Trufa Feb 13 at 0:18
thanks for the modification. – Sébastien Gicquel Feb 13 at 8:31

If you're sure that it works on all platforms you're aiming for, and you don't care what w3c says you can certainly use the marquee tag. There is no way that you can find a JavaScript solution that works in less than 14 bytes.

The only unfortunate thing is that the reason all these browsers support all these deprecated elements that are -in this case- not even part of any HTML standard, is because of all these people using these elements and start whining when a new version doesn't support their 1982 compliant website anymore.

So please go ahead and use marquee as long as it works for you, but please don't complain if you site stops working in a newer browser.

share|improve this answer
1  
The site wont stop working, just the marquee element might disappear. Not that I'm advocating deprecated and/or non-standard elements. – AUSteve Dec 12 '10 at 23:43

Here's the code that implements the marquee element in Firefox, it's basically doing it in JavaScript anyway so you could always just adapt that code and use it directly in all browsers.

The code can be hacked around so that marquee can be implemented on any element in Firefox, applied through CSS and XBL bindings (Firefox only example). The equivalent in IE would be behaviours, and you could use the CSS3 in Safari/Chrome as nico suggested and you would be keeping the presentational stuff out of your markup, but only you can know if it's worth the effort.

share|improve this answer

I've been looking for the most efficient and cross-browser supported marquee implementation. For whatever reason, even the webkit CSS marquee implementation is glitchy.

The common approach is to use timer (or jQuery animate implementation) to adjust the CSS margin property of the element. This is too glitchy and very inefficient. I came up with implementation that utilises CSS3 transitions for browsers that support it and otherwise animate the scrollLeft property of the containing element. It is an experimental implementation, though it works well with IE7+. Other people might find it useful as well, https://github.com/gajus/marquee (demo https://dev.anuary.com/60244f3a-b8b2-5678-bce5-f7e8742f0c69/).

share|improve this answer

Recently, i had to do this effect for a client and i've used this plugin which is very easy to use :

jQuery Marquee plugin on github

jQuery Marquee on plugins.jquery.com

share|improve this answer

If you want to sell your soul, go ahead. However, if I recall, the annoying thing about the <marquee> tag is that it waits for the entire content to be out of sight before looping around again. If that's a problem, then I'd go for javascript.

share|improve this answer
That is the effect I want. Scroll all news headlines from newest to oldest, and after the oldest is out of site, start over. – baruch Dec 12 '10 at 19:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.