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
1
vote
1 answer

jQuery animation is not working TypeError: x.easing[this.easing] in jQuery 1.10.2

I am working on a wordpress theme and stuck with a strange issue. This is the site I am working on http://dalya.go-demo.com/ I want to expand the menu on clicking on the menu button in right side. And than want to close it on clicking on the close…
Airish
  • 13
  • 2
  • 9
1
vote
0 answers

Jquery slide toggle hide and show

I need to hide one div and show another using slide function of jQuery. In hide function, I am using this code $("id").hide("slide", { direction: 'left' },1000); and in show I am using this code: $("id").show("slide", { direction: 'left'…
Prince Chopra
  • 167
  • 11
1
vote
1 answer

jquery accordion animate no method

I have have the following code, $("#nav").accordion({ event: "mouseover", autoHeight: false, collapsible: false, animate: 'bounceslide',
Udders
  • 6,914
  • 24
  • 102
  • 194
1
vote
1 answer

Use quicksand with non-fixed height/width container

Is there a way to use the Quicksand plugin (http://razorjack.net/quicksand/) with a container which is set to percentage dimensions rather than fixed? It functions fine but the animations don't work properly. Thanks.
Supertod
  • 277
  • 2
  • 12
1
vote
1 answer

Error - easeInBounce is not defined

I am attempting to use jQuery easing function easeInBounce and I see this error: ReferenceError: easeInBounce is not defined I am using jQuery 1.8, Easing 1.3 and jQuery UI 1.8.23. Here is my code HTML:
L84
  • 45,514
  • 58
  • 177
  • 257
1
vote
1 answer

Image fader with rectangular fade-in expanding from middle to edges

I'm replacing a custom Flash animation with a jQuery. The old animation used a mask that moved like a curtain opening: the center appears first and the image fades in laterally on both sides in a smooth expansion of the centered rectangular mask…
jerrygarciuh
  • 21,158
  • 26
  • 82
  • 139
0
votes
1 answer

Jquery Slide after reveal filter

I have a filter action that is working the way I want each div fades in or out on click; however when the divs fade out or in, instead of just jumping over I would like to see them slide into place. http://theoaks.turnpostadmin.com/floor-plans/ What…
Jamison
  • 91
  • 1
  • 1
  • 8
0
votes
1 answer

Anti-aliased image in IE8/7. What are my options?

So I'm working on a project for a client and they have an image. They want the image to move at an angle to a certain position on the page. When it does the image becomes jagged and non-anti-aliased in IE7/8. Is there something I'm missing with the…
0
votes
1 answer

jquery modification, ease to hide/show and my syntax sucks

Finally got a scrolling menu in for the customer, and now the want it to be a show() hide() situation. I don't understand jquery enough to do anything other than use it like legos yet. My first thought was, "this will be easy" I'll just change…
rd42
  • 3,584
  • 15
  • 56
  • 68
0
votes
1 answer

jquery replace easing and animation

I've been playing with the easing on a menu so long that it is making me dizzy. I have a menu and when you click on it, it eases the associated content into view. I'm not sure what search terms to use to have the element just appear instead of…
rd42
  • 3,584
  • 15
  • 56
  • 68
0
votes
1 answer

jquery easing with animate

i have a page that shows a div on mouseover i want the page to move to the div on focus....i got help here to do that... Now i want the onfocus to the div to move with the easing plugin and move it. i dont want to use the 'slow' in the animate…
Eno Bassey
  • 57
  • 1
  • 3
  • 11
0
votes
1 answer

jQuery easing with "jquery.paginatetable.js" and tables

I am trying to figure how to enable easing with "jquery.pagenate.js". I've done a bunch searching but it seems no one has done this? I was under the impression you can add easing to anything. Currently, the new pages just 'appear' without any…
0
votes
0 answers

Easing functions not having any effect in skitter

I am using skitter to create a slideshow and it looks like the easing functions I provide with the easing_default key are not having any effect. Here is my code: $('.skitter').skitter({ auto_play: false, dots: false, velocity: 0.1, …
Real Noob
  • 1,369
  • 2
  • 15
  • 29
0
votes
1 answer

jQuery: offset() animation and ajax

I'm having a little problem with jQuery ajax and an animation. I have a layout with a menu that call my page and when loaded, provide a little animation with jQuery easing Here's my ajax.js $(document).ready(function() { // Ajax request …
Lucas
  • 2,886
  • 1
  • 27
  • 40
0
votes
1 answer

How can I run jQuery function only if user hasn’t scrolled?

I’ve been trying to incorporate an auto scroll function on my website (live here). I want it to scroll to the content 6 seconds after load, but only if the user is on the very top of the page and hasn’t scrolled enough to uncover the #introduction…