question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

jQuery Easing Plugin

See original GitHub issue

Hi,

Can we use jQuery Easing Plugin ?

I added the script :

<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>

And added easing

$(document).ready(function() {
    $('.fade').slick({
        dots: true,
        infinite: true,
        speed: 800,
        fade: false,
        slide: 'div',
        easing: 'easeInOutBack'
    });
});

But it does not work. Should I add or change something?

Thanks

Issue Analytics

  • State:closed
  • Created 9 years ago
  • Comments:9 (4 by maintainers)

github_iconTop GitHub Comments

2reactions
routycommented, Dec 21, 2015

Hey @kenwheeler I just found another github issue that resolved the confusion, the current version of the plugin requires useTransform: true. It is now working. #1950

Thanks for this plugin, it is awesome!

2reactions
Landishcommented, Apr 11, 2014

I came here to ask the same question, but after reading @kenwheeler’s comment, I used this tool http://matthewlein.com/ceaser/ to generate custom easing and put the cubic-bazier(...) in cssEase property.

$(document).ready(function() {
    $('.fade').slick({
        dots: true,
        infinite: true,
        speed: 800,
        fade: false,
        slide: 'div',
        cssEase: 'cubic-bezier(0.950, 0.050, 0.795, 0.035)'
    });
});

and it worked!

Read more comments on GitHub >

github_iconTop Results From Across the Web

jQuery Easing Plugin - GSGD
Description. A jQuery plugin from GSGD to give advanced easing options. Please note, the easing function names changed in version 1.2.
Read more >
gdsmith/jquery.easing: jQuery Easing Plugin - GitHub
jQuery Easing Plugin. What is it? A jQuery plugin from GSGD to give advanced easing options. More info here. For CDN please use...
Read more >
Easing - jQuery UI
Support the JS Foundation ... Apply an easing equation to an animation. ... All easings provided by jQuery UI are drawn above, using...
Read more >
jQuery Easing Plugin
jQuery Easing Plugin. by George McGinley Smith. A jQuery plugin from GSGD to give advanced easing options.
Read more >
jquery-easing - Libraries - cdnjs - The #1 free and open ...
A jQuery plugin from GSGD to give advanced easing options - Simple. Fast. Reliable. Content delivery at its finest. cdnjs is a free...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found