Questions tagged [jquery-easing]

A jQuery plugin to give advanced easing options.

Easing controls how an animation progresses over time by manipulating its acceleration. jQuery has two built-in easing methods: linear and swing.

List of Easing Options

  • def
  • jswing
  • easeInQuad
  • easeOutQuad
  • easeInOutQuad
  • easeInCubic
  • easeOutCubic
  • easeInOutCubic
  • easeInQuart
  • easeOutQuart
  • easeInOutQuart
  • easeInSine
  • easeOutSine
  • easeInOutSine
  • easeInExpo
  • easeOutExpo
  • easeInOutExpo
  • easeInQuint
  • easeOutQuint
  • easeInOutQuint
  • easeInCirc
  • easeOutCirc
  • easeInOutCirc
  • easeInElastic
  • easeOutElastic
  • easeInOutElastic
  • easeInBack
  • easeOutBack
  • easeInOutBack
  • easeInBounce
  • easeOutBounce
  • easeInOutBounce
141 questions
0
votes
1 answer

JQuery animation not working on anchor tag

I am using the easing plugin to 'shake' my anchor tag when a user hovers with the mouse. It works if I attach it to any element other than the tag. I also tried attaching the behavior to the preceding
  • but it didn't work there either. I'm…
  • huzzah
    • 1,793
    • 2
    • 22
    • 40
    0
    votes
    1 answer

    Hover out jQuery elastic slide-back not working

    I'm having a bit of an issue getting the return animation to play on the hover out state. $("#porttab").hover(function(){ $(this).stop().animate({"top" : "40px"}, { duration: 'slow', easing: 'easeOutElastic' }, function(){ …
    0
    votes
    1 answer

    Link 'Out' of jQ

    From the top: I'm using the Yin & Yang WP theme ('http://onioneyethemes.com/yin-and-yang/') for my portfolio and I've run into a little bit of a snag with/on the jQ side of things. I've copied the code over into a separate template to use in the…
    -1
    votes
    2 answers

    Jquery Animate ScrollTop with easing plugin

    I have this jquery code to scroll to an element when another is clicked $("#element1").click(function() { $('html, body').animate({ scrollTop: $("#element2").offset().top }, 1000); }); Now i need to implement an easeInOutCirc easing on this…
    -1
    votes
    1 answer

    jQuery animate() and easing type

    I have this: $('h1').animate({ //stuff to be changed, }, { duration: 1000, queue: false }) It doesn't accept when I change it to something like this: { duration: 1000, queue: false, easing: easeOutBounce } When providing…
    Dawid
    • 585
    • 5
    • 26
    -2
    votes
    1 answer

    jQuery.easing.js compatibility issue

    At this site, the menu and slide banner do not work together. Below before there are two scripts for each menu and banner and they use same or different jQuery version. If I use either or both versions. the menu do not work properly or the…
    kevin
    • 328
    • 4
    • 15
    • 33
    1 2 3
    9
    10