Link to home
Start Free TrialLog in
Avatar of intoxicated_curveball
intoxicated_curveball

asked on

Zepto not working

Hi I'm trying out the zepto.js library because it's so small...

I wrote the simplest line:

$('#content').animate({opacity: 0.25}, 0.5);

But it doesn't work, nothing happens?
Avatar of hielo
hielo
Flag of Wallis and Futuna image

> $('#content').animate({opacity: 0.25}, 0.5);
the duration should be in milliseconds.  You probably meant 0.5 secs. If that is the case try:
$('#content').animate({opacity: 0.25}, 500);//500millisecs=0.5secs

Also, make sure you call it once #content is ready/available:
Zepto(function($){
    $('#content').animate({opacity: 0.25}, 500);
});

Open in new window

Avatar of intoxicated_curveball
intoxicated_curveball

ASKER

Still doesn't work. I think it's the library failing, I might try another library, I don't think this one is very good?
ASKER CERTIFIED SOLUTION
Avatar of hielo
hielo
Flag of Wallis and Futuna image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial