
Originally Posted by
Pullo
I'm afraid this is not currently possible.
There is some talk of a system whereby people can "thank" each other, but this didn't get implemented yet.
Thank you for asking, though.
Shouldn't be too difficult.
You could try jQuery's
removeClass() method.
Alternatively, post the code you have and maybe there's another way to go about things.
Ok, here is my code
HTML Code:
var howSection = $('div#how'),
appIcon = $('img.m1'),
motionOne = appIcon.width() / 2,
motionTwo = $('.m2').width() / 2,
pieTimer = $('#pietimer'),
animationCollet1= $('.animation-collection-1')
controlLeft = $('div.space-control-left'),
controlRight = $('div.space-control-right'),
fixCircle = $('.animate-fix-circle'),
stepOne = $('.step-1'),
stepTwo = $('.step-2'),
stepThree = $('.step-3'),
creditCard = $('.credit-card');
// ............. start the animation and chaining
var animation =
$.chain(
function(){ return stepOne.addClass('animated anim05 fadeInLeft').delay(600); },
function(){ return pieTimer.polartimer('start').delay(2510); },
function(){ return appIcon.addClass('animated anim1 bounce').delay(1000); },
function(){ return appIcon.addClass('fadeOutLeft').delay(800) },
function(){ return fixCircle.addClass('animated anim05 fadeOut').delay(200) },
function(){ return $('.animation-collection-1').addClass('animated anim1 fadeOut').delay(500) },
function(){ return stepOne.removeClass('active').delay(500) },
function(){ return stepTwo.addClass('animated anim05 fadeInRight active').delay(600); },
function(){ return $('.iphone-potrait').addClass('animated anim1 fadeInUp').delay(1100) },
function(){ return creditCard.addClass('animated anim1 fadeIn').delay(1200) },
function(){ return creditCard.addClass('rotate').delay(1200) },
function(){ return stepTwo.removeClass('active').delay(500) },
function(){ return stepThree.addClass('animated anim05 fadeInLeft active').delay(600); },
function(){ return stepThree.removeClass('active').delay(500) },
function(){ return $('.step-4').addClass('animated anim05 fadeInRight active').delay(600); }
);
Bookmarks