139 questions
0
votes
0
answers
64
views
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: ...
2
votes
1
answer
154
views
having jerks when playing video on mousemove
I am facing a problem with video playback when mousemove function is applied. the function is working but when the video is played it has jerks. I want it to be smooth with an easing function maybe. ...
0
votes
1
answer
144
views
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’...
0
votes
1
answer
164
views
How to add customized easing function in this jQuery code segment without getting all jQueryUI in this?
I saw somebody used an algorithm to simulate the easeOutExpo effect with just the linear parameter. The disadvantage of this code below is it needs a calculation:
step_value += (target_value - ...
0
votes
1
answer
915
views
jQuery easing library - Uncaught Error: Syntax error, unrecognized expression
I am trying to use http://gsgd.co.uk/sandbox/jquery/easing library in my single page app to navigate to different section of my page with smooth scrolling effect.
When I use the following html markup:...
1
vote
1
answer
3k
views
Jquery .easing errors jQuery.easing[this.easing]
I have done absolutely everything to try and fix my code: JQuery libraries (Ui’s, Core’s, Plugins) .etc, but can't fix this
$('.heading').click(function() {
console.log("...
0
votes
1
answer
52
views
Imitating @keyframes rule using Javascript only
I'm trying to create a function that uses percentage to get a number.
The idea is to have something like this:
0%: 100px
50%: 200px
75%: 210px
So when I run my function at a percentage like 25% it ...
2
votes
2
answers
2k
views
"$.extend is not a function" while using jquery.easing in nuxt.js
I made an app in Vue.js that I'm trying to adapt in Nuxt.js.
For the scrollspy I used jquery.easing in Vue.js so I wanted to do the same in Nuxt.js.
A little like you import jQuery in Vue.js main.js ...
0
votes
0
answers
69
views
Jquery animations are working inconsistently
I'm working on a simple game project and playing around with jQuery to do some animations.
For some reason, the smoothness and consistency of the animations correlate to how 'active' the webpage is. ...
0
votes
0
answers
343
views
Remove dependency of a library from jquery
The previous developer has included the jquery like this -
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
In this jquery there is a line as
...
0
votes
1
answer
557
views
Electron jquery.easing is not a function
I'm trying to make an Electron-App out of my existing website. So I installed everything via npm and copied to files of my website to the electron folder.
The app start's and my first page works ...
0
votes
1
answer
50
views
jquery easeOutBounce horizontal
I'm trying to do a easeOutBounce horizontal animation, but all i succeed to do is vertical easeOutBounce, with this : $('#tester').slideToggle(1000,'easeOutBounce');
here is my jsfiddle :
https://...
1
vote
2
answers
921
views
expand div with easing bounce animation
I hide the div element to expand another div area. I just want to replace 'transition: width .3s ease-out; 'with' easeoutbounce 'with jquery, here is my fiddle. what should I add / change from the ...
2
votes
0
answers
850
views
How to: google-maps-react marker easing
I am working on a react web client app that listens for a json array of gps coordinates and updates markers on a map accordingly (using google-maps-react). Everything works as expected, however, the ...
0
votes
1
answer
3k
views
jQuery - animate on scroll up and down with easing effect?
I want to animate an element when I scroll down and up the page:
$(document).ready(function(){
$(window).scroll(function(){
$('p').each(function(r){
var scrolled = $(window)....