Animate

From rbachwiki
Revision as of 23:18, 26 December 2016 by Bacchas (talk | contribs)
Jump to navigation Jump to search

Animate

HTML

<div id="filters">
<button id="filter-berry">Toggle berry flavors</button>
<!-- <button id="filter-citrus">Toggle citrus</button> -->
</div>

Jquery

 $('#filter-berry').click(function(e) {
        e.preventDefault();
        $('#cart-water').find('.berry')
            .animate({
                'margin-left': '50',
                'height': '70',
                'opacity': '.5',
                'font-size': '120%'

            }, 3000,easeInOutElastic);
    });
// you have to install jquery UI to get the Easein functiolality

Different ease animations Back To Top< — >Category< — > Home