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.
Related
I need to create a draggable incremental indicator(i don't know whats the exact terminology for this.), basically something like below:
Now i came across THIS plugin. Now this plugin works fine, but i was just wondering if there are other plugins like this one that i can use and get a similar effect ?
P.S. I don't want to use jQuery UI , just jQuery and jQuery plugins.
You can use this one: http://seiyria.com/bootstrap-slider/
It's possible to use this library with or without jQuery
Repo: https://github.com/seiyria/bootstrap-slider
These are called sliders.
You can use this one if you want
https://refreshless.com/nouislider/slider-values/
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
Does anybody have any idea if it's possible to create a jsFiddle in which I can use the framework jQuery Easy UI? I cannot choose jQuery Easy UI in the list of the frameworks.
Please let me know if that's possible and how I can do it please.
How about something like this jsfidde link ?
You should select jQuery as your framework and the click the add resources button and add the desired js and css (you can look at this page to see what dependencies the demo has).
In your case, I think the resources are
http://www.jeasyui.com/easyui/jquery.easyui.min.js
and
http://www.jeasyui.com/easyui/themes/default/easyui.css
Here is the documentation for adding resources on jsFiddle: http://doc.jsfiddle.net/basic/introduction.html#add-resources
What are the main differences between a Jquery Widget and a Jquery Plugin.
Mainly:
What purposes do they serve
Is one better than another or do they both have their place in the jquery world
What is an example where I would want to use one over another
What is an example if any where either would be a fine solution
What is an example of a widely used widget and a widely used plugin
I've never heard of a jQuery widget. I imagine some people might use the term to describe a... widget... that has been made with jQuery. Certainly there are widgets in jQuery UI, for example. It's an odd question.
A widget is a widget (always includes a visual element, sometimes includes reusable functionality), and can be a subset of a plugin or a plugin in and of itself.
A plugin extends jQuery directly and may or may not have a visual component.
Difference between jQuery Widget and plugin is state.
please see details on it here
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..!!