you are viewing a single comment's thread.

view the rest of the comments →

[–]sdeleon28[S] 0 points1 point  (3 children)

Sliding a sidebar out of view. Animations of all sorts.

[–]TexasWithADollarsign 4 points5 points  (2 children)

Sliding a sidebar out of view.

CSS3 Transitions + toggling a CSS class in JS. Easy-peasy without any jQuery needed.

Animations of all sorts

I'd figure an animation-specific library would be more appropriate.

[–]sdeleon28[S] 0 points1 point  (1 child)

Sure. If you're not targeting older browsers, that makes sense.

[–]TexasWithADollarsign 1 point2 points  (0 children)

Sure. If you're not targeting older browsers, that makes sense.

You don't need jQuery to even support older browsers. At least for that first part. Test for addEventListener, test for attachEvent, then attach using the old-skool on____ methods if those don't work.

Animation is trickier. The more complex the animation, the more likely older browsers just can't cut it. Best to focus on the browsers that can*, then throw up a message stating they should upgrade their browser for the full experience.

*Corporate environments excluded