Comments on: New jQuery plugin: “Fly Off Page” https://j11y.io/cool-stuff/new-jquery-plugin-fly-off-page/ Sun, 22 Mar 2015 15:39:22 +0000 hourly 1 https://wordpress.org/?v=5.0.13 By: Raja https://j11y.io/cool-stuff/new-jquery-plugin-fly-off-page/#comment-328 Mon, 23 Nov 2009 05:01:55 +0000 https://j11y.io/?p=292#comment-328 Cool Plugin … Thank You

]]>
By: Haydies https://j11y.io/cool-stuff/new-jquery-plugin-fly-off-page/#comment-327 Mon, 26 Oct 2009 17:47:19 +0000 https://j11y.io/?p=292#comment-327 This might be a handy change for some. It adds a function call when the animation finishes.

.animate(tweens, s.duration, function(){
// On comepletion, remove the animated element:
var p ; p = this.parentNode ;

callBack = s.callBack ;

if (callBack != ”) {
callBack(p) ;
}

el.remove();
})

]]>
By: Anon https://j11y.io/cool-stuff/new-jquery-plugin-fly-off-page/#comment-326 Tue, 28 Jul 2009 06:54:58 +0000 https://j11y.io/?p=292#comment-326 I am using a jQuery slideshow script which is capable of Callbacks, these allow for external factors to take place based on internal events. Such is the way I would like the script to evolve on my page, with the aid of these Callbacks, that if I were to click ‘add’ the image would fly off to a basket where the eventual collection could be downloaded. I got the idea from a DHTML script here:

http://www.dhtmlgoodies.com/scripts/fly-to-basket/fly-to-basket.html#

But I don’t think the two are going to meld together and was wondering if there was an alternative flying product script in jQuery that I could integrate into the existing one I am using to animate the images here:

http://malsup.com/jquery/cycle/int2.html

Many thanks.

]]>
By: Feras Kayali https://j11y.io/cool-stuff/new-jquery-plugin-fly-off-page/#comment-325 Mon, 06 Apr 2009 13:32:09 +0000 https://j11y.io/?p=292#comment-325 I removed the following line and worked properly:

// Insert clone before original element: (make clone invisible)
.before($(clone).css(‘opacity’,0));

Why are u inserting this clone?
Thanks again.

]]>
By: Feras Kayali https://j11y.io/cool-stuff/new-jquery-plugin-fly-off-page/#comment-324 Mon, 06 Apr 2009 13:22:54 +0000 https://j11y.io/?p=292#comment-324 Nice Plugin.
two notes:
1) The full version worked while the min version didnt.
2) I tried flying off td elements from tables. It works but it changes the table somehow.
Its like the td that flies off leaves a bigger space than it already had!

Thank.

]]>
By: Angelina Fabbro https://j11y.io/cool-stuff/new-jquery-plugin-fly-off-page/#comment-323 Thu, 29 Jan 2009 19:41:04 +0000 https://j11y.io/?p=292#comment-323 Funny, I’m looking for a way to make elements ‘fly on’ to a page. 😉

]]>
By: shag https://j11y.io/cool-stuff/new-jquery-plugin-fly-off-page/#comment-322 Fri, 09 Jan 2009 05:20:22 +0000 https://j11y.io/?p=292#comment-322 very nice indeed. some scaling might be a nice addition to the animation. killer as is though. thanks.

]]>
By: Roger https://j11y.io/cool-stuff/new-jquery-plugin-fly-off-page/#comment-321 Thu, 08 Jan 2009 04:40:09 +0000 https://j11y.io/?p=292#comment-321 Thats a cool plug-in. However, I’m more interested in your original intent. I’m looking forward to that blog post.

]]>
By: James https://j11y.io/cool-stuff/new-jquery-plugin-fly-off-page/#comment-320 Fri, 02 Jan 2009 16:11:10 +0000 https://j11y.io/?p=292#comment-320 Nice work @krazyCeltic!

]]>
By: KrazyCeltic https://j11y.io/cool-stuff/new-jquery-plugin-fly-off-page/#comment-319 Thu, 01 Jan 2009 17:57:30 +0000 https://j11y.io/?p=292#comment-319 Here’s an example of a widget utilizing James’ fly off the page plugin:

http://www.joshuamcinnis.com/dev/jquery/index.php

Naturally you would choose semantic class names, reset css to necessitate fewer css properties, and perhaps use a graphical “close widget” button but this is just a quick throw-together demonstrating a practical use of the plugin.

]]>