jQuery Explode Effect - javascript

With jQuery UI, there is an amazing explode effect. I wonder how they have created it.
I am looking for implementation of that; how to create that effect without resorting to jQuery UI and use jQuery alone for that effect?

The source code is available on GitHub.

Related

Fullscreen paging without jquery

I'd like to such behavior to my project, but I use ember fastboot, so I cant use jQuery
is there some non-jquery plugins like fullPage.js?
Here is example what I need:
https://github.com/alvarotrigo/fullPage.js
As per the comments, you can always use the pure Javascript version of fullpage.js itself:
https://github.com/alvarotrigo/fullPage.js/tree/master/pure%20javascript%20%28Alpha%29
Demo online
It hasn't been as highly tested as the jQuery one, but it seems there are not many complains about it.

Sortable/draggable list items without jQuery UI (or jQuery at all?)

I've been looking for a Javascript plugin that would provide the same basic functionnality as jQuery UI Sortable. Wich is dragging and dropping items for reordering them. In my case those items are <li> tags.
Basically, I don't want to use jQuery UI because it's quite heavy and, as I don't need to support IE, I'm using Zepto instead of jQuery. So I don't want to load jQuery AND jQuery UI just for this. That being said, I could easily live with a working jQuery plugin and adapt it so it works with Zepto.
I've been looking for this for quite some time but can't seem to find anything.
Whilst this doesn't have the full functionaility as jQuery UI Sortable you might be able to use this Zepto - Drag and Drop plugin.
https://github.com/netotaku/zepto-drag-and-drop.js

YUI: Is there any any script made by using YUI, for slider.?

I m developing an application in YUI. And need to implement a slider for 3 forms.
which will work exactly like this JQuery Plugin :
http://tympanus.net/Tutorials/FancySlidingForm/
I am very noob in YUI.
So can anyone provide me code snippet for this kind of slider..?
as mozillanerd suggests you can use the jquery Plugin in your page along with any YUI code you have, otherwise you might have to roll your own. If you do put it up on the gallery so others can use it.
I found a similar widget in YUi i.e. YUI 2.x Carousel widget
http://developer.yahoo.com/yui/examples/carousel/csl_imagentext_source.html
maybe this will fit in my scenario. I will try this and let u know guys..!!

Pure JQuery based range slider which doesn't use jQuery UI

Does anyone know a good, independent jQuery range slider plugin that doesn't rely on jQuery UI?
Why did you link to LimeWire?
Anyway,
Check out Flowplayer's jQuery tools rangeinput. It's all sorts if awesome and super tiny.

JavaScript: Alternative to JQuery's (dual) Slider control?

I am using the JQuery Slider control for use as a double sided slider (dual slider).
It's a great UI control but I'm looking for an alternative that isn't so "fat".
Right now, just for me to use the Slider control, I have to include:
JQuery core
JQuery UI core
JQuery Slider plugin
When I both minimize using Google's awesome Closure (minimizer) and GZIP the JavaScript, I'm still at around 29kb.
Question: Do any comparable (dual) Slider control exist that isn't such a large download?
How about
jQuery Slider plugin (Safari style)
But to be honest 29kb isn't fat is it?
Here is another alternative that I found today so I thought I'd share it! I haven't used it, and I don't know how heavy it is, but the folks that built it seem to have a very strong focus on accessibility, which may or may not be important for your project.
http://www.paciellogroup.com/blog/misc/samples/aria/slider/doubleslider.html

Categories