Questions tagged [easing]

a set of algorithms for graceful motion over time with acceleration and deceleration.

These were developed by, discovered by, or popularized by and released by Robert Penner under the BSD license and implemented in a very wide variety of languages and frameworks including CSS3 Transitions, jQuery, WPF and Silverlight.

383 questions
-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
-1
votes
2 answers

What does the variable "k" stand for?

I use the tween.js library, it contains some built in easing functions such as this one: Quadratic: { In: function (k) { return k * k; } }; The user guide describes the variable k as: k: the easing progress, or how far along the…
Drahcir
  • 11,772
  • 24
  • 86
  • 128
-1
votes
1 answer

scrollTop() -> Type error undefined n.easing

The following script is working live for 2 times. The third time i click on a a with a hash it does not work any more and the following error shows up in the Console. Any ideas? TypeError: 'undefined' is not a function (evaluating…
Max
  • 608
  • 1
  • 7
  • 23
-1
votes
1 answer

use the easing function

I found the js library for easing functionality, but somehow it won't work... here is the jsfiddle i created. jsfiddle $(".top").click(function(){ $(".top").animate({ left: '100px' }, 600, 'easeOutBack'); }); (it doesn't have the…
BigGirl1017
  • 61
  • 1
  • 3
  • 12
-1
votes
2 answers

How to add easing to this JQuery script?

I want to add easing to this JQuery hover menu script, how can I do that? $("#navi_bakery").hover(function(){ $("#navi_bakery img").animate({ paddingTop:"0px" },100); },function(){ $("#navi_bakery…
oceanic815
  • 483
  • 2
  • 9
  • 20
-1
votes
1 answer

How can I make my vertical drop down menu with an ease effect?

JSFiddle # http://jsfiddle.net/UqyAq/ html -
-1
votes
2 answers

ScrollTo doesn't work

I re-open my previous question as it has been closed due to not beinig specific enough. I'm trying to make jQuery plugin "ScrollTo" work, but I'm definitively doing something wrong despite using the same method that the doc describes. Here is how I…
-2
votes
0 answers

Servo Easing with Servoblaster on Raspberry Pi

I am using servoblaster from https://github.com/srcshelton/servoblaster Is it possible to implement some sort of easing algorithm in python? Example: The following will full speed move servo_x to 1125 at full speed and then back to starting position…
DanZ3r0
  • 1
  • 1
1 2 3
25
26