the below is a nice dragging tab, which I would like to implement in my project. Is there any jquery plugin for this.
http://www.blitzagency.com/our-people/#meet-the-blitizens
The following tutorial is useful for you to try out, it uses Jquery and JqueryUI
http://jqueryfordesigners.com/slider-gallery/
Related
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.
I'm using a theme which uses jQuery UI rotate method, but after updating to the newer version it has stopped working. I have found out that the jQuery UI has removed the rotate method, and I can use some extension if I want to keep it working. But I was wondering if its possible to use some alternative function for the following line, since its so simple:
$("#slider").tabs("rotate",0,true);
The purpose is to rotate the tab.
Looks like someone updated it for 1.9
If you implement the extension as suggested by the docs, you would use the extension like this:
$("#tabs").tabs().tabs("rotate", 4000, true);
note the extra call to .tabs()
Here is the extension: https://github.com/cmcculloh/jQuery-UI-Tabs-Rotate
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..!!
I am looking for jQuery plugin that does something very similar to google translate when you click on 'detect language'. I couldn't find this in jQuery UI - is there anything out there?
Take a look at http://closure-library.googlecode.com/svn/docs/index.html and, for the combobox code, http://closure-library.googlecode.com/svn/docs/closure_goog_ui_menubuttonrenderer.js.source.html
is there a library in javascript where i can let the user drag and drop boxes and configure? like igoogle.
Check out jQuery UI for jQuery. It has a Draggable class that will allow you to drag and drop elements.
Checkout this plugin Easy Widgets that was inspired by this tutorial on nettuts that goes over how to build an iGoogle like interface using jQuery in detail. The plugin's home page is down but the source code is available, and you can still see a demo of the nettuts tutorial in action here.
Check ScriptAculous to enable drag and drop
http://wiki.github.com/madrobby/scriptaculous/draggable
http://www.tutorialspoint.com/script.aculo.us/scriptaculous_drag_drop.htm