MyBB Community Forums

Full Version: Need some jquery plugins
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
http://www.creativedepart.com/
load the news/resources page. See? It kinda smoothly fades in coming from up. Anyone know what plugin it is? I want something that loads my content just like that, whatever it is. Images, text or video (mainly text and sometimes images).

A second one, which is less important, changing the links colours when he move the mouse over them smoothly, so it changes from a colour to another very smoothly.

Thanks in advance.
For the first one, it doesn't seem smooth for me. But it could just be a browser issue.

As for the second, the only way I know how to do that is in CSS.
a :hover {
color: #hexcode;
}
a {
color:#hexcode;
}
I'm pretty sure that I have the first part of that code right. I can't remember if ":hover" is correct or not.
lol I know that, pretty basic CSS. I mean changing the colours SMOOTHLY. Which would require some kind of JS script, perhaps jquery..
It's a simple jQuery slider, read this for a how to do it and a demo: http://docs.jquery.com/UI/Effects/Slide. For the smooth links they ysed jQuery fade: http://docs.jquery.com/Effects/fadeIn.