1 jQuery Fan Blog for your Daily News, Plugins, Tuts/Tips & Code Snippets.
The CSS Class selector is very useful when you need to manage or apply CSS styles to multiple elements. Additionally the CSS Selector has performance advantages and can be overloaded. This becomes more exciting when jQuery is used to add/remove or toggle classes. In this screencast, we’ll take a look at how jQuery makes it […]
Continue reading %Video: Playing with jQuery and the CSS Class Selector%
One of the most discussed web design trend of the last few years is the parallax scrolling effect. Whether you like it or not, it is used by a lot of websites. In this tutorial I'll give you a brief introduction to parallax scrolling and show how we can reproduce it in a website using a jQuery plugin called Stellar.js.
bower install jquery.stellar
Once you have downloaded it, you have to include Stellar.js in your page using the usual script
element after you have included jQuery as shown below:
[html]
[/html]
After completing this step you're all set up to adopt a parallax scrolling effect in your pages. This plugin allows you to apply the effect to any scrolling element, for example the window
object or any other element you may have. To do that you have to select the element using jQuery's constructor and then invoke the stellar()
method on it.
A minimal example that employs this library upon the window
object is shown below:
[js]
$('#someElement').stellar();
[/js]
For the window
object, the library also provides a nice shorthand, shown below:
[js]
$.stellar();
[/js]
At this point the library will search for any parallax backgrounds or elements within the specified element and reposition them when the element scrolls.Continue reading %An Introduction to Parallax Scrolling Using Stellar.js%
The time has never been better to learn mobile application development. For many app ideas, you don’t even need any prior native development knowledge. You can get started today with knowledge of HTML, CSS and JavaScript. Unlike native mobile development, mobile applications using web technologies can support many mobile platforms.
There are many tools and framework available to help you create Mobile applications. In this article, we’ll look at our top 7.
Continue reading %The Top 7 Hybrid Mobile App Frameworks%