PDA

View Full Version : WoW Web Effect


RWB
13 Sep 2009, 6:43pm
On the Armory website for WoW they have the mouse over effect that is identical to the one in game. What technique is used for this?

Thrax
13 Sep 2009, 7:48pm
CSS+Javascript.

RWB
13 Sep 2009, 8:16pm
Just for clarification, you mean Java and not Javascript?

Thrax
13 Sep 2009, 8:18pm
Javascript. :)

GooD
14 Sep 2009, 12:38am
With CSS, Javascript and some Ajax its AMAZING what you can do :)

ardichoke
14 Sep 2009, 12:44am
With CSS, Javascript and some Ajax its AMAZING what you can do :)
I'm sorry for being nitpicky here but you're listing ajax as if it's a programming language. It stands for Asynchronous Javascript and XML, your statement is redundant. /nitpick

GooD
14 Sep 2009, 12:51am
Yeah, but since you can do simple javascript without doing Ajax, i like to stand it apart.

In exemple : At work i've done several web application with javascript but without doing any Ajax. And i've done some others with Ajax on almost every page.

But yeah, you're right, some might think its redundant ;)

ardichoke
14 Sep 2009, 1:07am
Since you can't have AJAX without javascript though, listing both javascript and AJAX is redundant. Regardless, we're arguing semantics now.

To get back on topic though, at least some of the effects like this can be achieved without javascript, simply using some creative CSS/XHTML. I'm not sure if the mouseover stuff can but I know you can do things like opening a lightbox type window when you click on something using no javascript at all.

RWB
14 Sep 2009, 2:19am
As I would imagine though the effects without JS would be harder to control cross browser?

Thrax
14 Sep 2009, 2:21am
Naturally. You'd be at the mercy of CSS rendering.