Tagged Questions
0
votes
0answers
45 views
Jquery techniques suggestion for this website? [closed]
i'm researching this website and want to make my own site like it:
http://embedxppremiere.chanel.com/watch/premiere/embed/experience/
I made a small demo, just using OOP and css() function + CSS3 ...
0
votes
0answers
111 views
changing background in subpages with animation effect [closed]
I have some problem with project.
I have website with divs, menu in (dt,dd used). My div where I include sub pages class is "content". My menu is in div "menu0".
How to make the different background ...
1
vote
1answer
70 views
jQuery — stop animation within plugin using public methods of that plugin
I'm using the extended jQuery Plugin Boilerplate to write a plugin that has public methods to start/stop an animation running within the plugin; this animation is not a CSS amin BTW, it's just a ...
0
votes
2answers
61 views
Issue with color animate jQuery
I am not quite sure what the problem is here. I have included the jQuery UI so that I have color compatibility.
<script type="text/javascript" src="<?php bloginfo('template_directory'); ...
0
votes
2answers
139 views
jquery slide/animate plugin name?
Last month I had found a really useful jQuery plugin for sliding/animating.
There were many options of how you could slide/animate items/elements.
For example:
First slow, then fast (an element ...
1
vote
1answer
154 views
jQuery animation on hover | Very fast pass, stop the animation
I have create a very small jQuery plugin, for personal usage, that creating an overlay on top of an image on hover event, and then animating two icons.
On mouse out it is animating the icons again, ...
0
votes
2answers
210 views
jQuery works on jsFiddle but not on localhost
I don't understand what happened. The last code I created works fine in console of jsFiddle but doesn't work in Firefox when I test it on localhost.
Here's some example code: it doesn't work on ...
1
vote
3answers
99 views
Delay until jQuery animate has finished
I have made a jQuery plugin which makes a splash screen. It uses the animate function of jQuery and is initalized and fired by the following:
$('#temperature_splash').splashScreen();
...
0
votes
1answer
493 views
cannot repeat animation - jQuery
I can't repeat animation with the following example (using jQuery Transit)
$("#rotateDiv2").button().click(function() {
$('#second').transition({
perspective: '100px',
easing: ...
3
votes
2answers
1k views
jQuery .hover() or .animate() causing bubbled animations in Marquee plugin
I'm playing with Giva Labs jQuery Marquee plugin. Example jsFiddle here.
There are two toggling lines of text in the example: First line and Second row. When you start to continuously move mouse ...
0
votes
4answers
1k views
Split Flap text animation Jquery
Can you please suggest me a Jquery plugin which does the same text animation as this demo: http://www.youtube.com/watch?v=1sn5FCSIfuE&feature=youtu.be
This is the text animation made in Flash ...
0
votes
3answers
297 views
Jquery create plugin - how get $(this) reference to my object in animation callback method?
I have the following problem:
I am creating a simple plugin jquery carousel, to animate images within a box.
But I came across the following problem, using OO to build the plugin, I refer to my object ...
1
vote
3answers
101 views
How can i prevent click on a html element before completion of animation?
I am expanding/collapsing a div using a click event bind on the div.
The expand/collapse takes place using
$('#myid').animate(myfunctiontocollapse/expand).
Now for instance height of div is zero and ...
0
votes
2answers
134 views
Customising swap() plugin to animate background color
Can anybody suggest how to make the swapped boxes change background color on click when using the below plugin?
http://www.vertstudios.com/blog/swap-jquery-plugin/ (see demo)
I'm not sure how to ...
0
votes
2answers
254 views
How do I write a jQuery plugin method that accepts a callback function?
I've read a couple of similar cases on Stack Overflow, but not one exactly like mine yet. Here's the gist of my jQuery plugin:
(function($) {
var methods = {
init: function() {
...