background preloader

Jquery snippets

Facebook Twitter

60 Amazing jQuery Sliders, Carousels and Other jQuery Image Plugins Creative Can. This is one of the largest and most up to date collections of jQuery slider plugins.

60 Amazing jQuery Sliders, Carousels and Other jQuery Image Plugins Creative Can

I’m sure you will find some of them useful for adding cool slider effects to your web pages. It is more and more common to see jQuery slider plugins used for image slideshows, carousels and for creating html slider effects on websites. It is a really great solution for showcasing sequential images or featured articles without taking up too much space.

To have a jQuery banner, content slider, carousel, gallery or any image presentation system on your web page, you certainly have the option to code it from scratch. Spritely.net. MaxImage: jQuery image scaler – Now with center-ability! “Outside the Box” Navigation with jQuery. Vertical Scroll Menu with jQuery Tutorial. Introduction Just last week, I came accross to this website Narrow Design.

Vertical Scroll Menu with jQuery Tutorial

His scroll menu caught a lot of my attentions, I played with it for a while. Yes, unfortunately, it's built in flash. And, Yes, we are going to implement it with jquery - javascript based scroll menu that will do the same thing. Of course, it will not be 100% the same, because some of the fancy features just not that practical to implement with javascript. Creating the iPhone unlock screen using xHTML, CSS and jQuery. The iPhone: Everybody knows what it is, many people "played around" with the gadget and most people love it.

Creating the iPhone unlock screen using xHTML, CSS and jQuery

I also own one of these amazing smartphones, and the looks of the software is really, really sleek and innovative (Just like we're used from Apple). I wanted to transfer (some) of these amazing designs to a webpage to re-create the same look and feel for webbrowsers. Today, I'm going to show you how to create The iPhone unlock screen in xHTML, CSS and jQuery. OK, maybe not fully the "feeling" (look and feel) from the iPhone, since I can't make any webbrowser react to placing your finger on the screen, but your mouse will do the trick. Features: XHTML and CSS valid. Known issues.

How To Build A Site That Works Like Pinterest. Ok, if you have no idea what Pinterest is then go check it out. It is a website that lets you organise and share all your favourite things by using pinboards. It really is a cool site, but what I find interesting is how these pinboards are laid out. I've seen something similar before with jQuery Isotope where blocks are perfectly positioned into a series of columns, and as the screen size changes, the columns re-shuffle to make sure they fit inside the screen. So the purpose of this tutorial is to re-create this responsive block effect ourselves... Click here to see a demonstration of what we're making Tip: resize the window The Theory Right, before jumping into the code, we need to get the theory sorted in our heads.

Create Magical Layouts With Isotope, A Great jQuery Plugin. Isotope is an exquisite jQuery plugin for magical layouts that can readjustment themselves depending on the browsers dimensions.

Create Magical Layouts With Isotope, A Great jQuery Plugin

Along with filtering and sorting functionality, this is a truly powerful plugin. I came across the plugin whilst developing a project that required blocks of various heights to fit perfectly in the page. Accompanied by the Infinite Scroll plugin, Isotope made the project a great success. Check out what I'm talking about here... See a DEMO. 85 Awesome jQuery Slider Plugins. Slider are very useful and increasingly popular web page elements used for highlighting important content.

85 Awesome jQuery Slider Plugins

By using a jQuery slider plugin, one can create amazing HTML slider effects with fancy animations of content elements like text and images. jQuery takes care of the difficult aspects like browser support and typically when using jQuery plugins it can be done with very little coding effort. This is the reason why jQuery sliders and jQuery banner slideshow scripts have become very popular on most types of websites. They are are typically used to feature multiple products, news, video etc. without taking up a lot of space on the pages. In fact, we see sliders on most news and business websites today and they are placed on the most important location over the fold on the front page. 150 best jQuery effects for web designers and developers. Rama - Slider.

Check out all examples.

Rama - Slider

MiniSlides - Portfolio and PriceBox Rotator. LayerSlider - The Parallax Effect Slider Preview. Follow Button. Updated on Fri, 2014-02-07 13:58 The Follow Button is a small widget which allows users to easily follow a Twitter account from any webpage.

Follow Button

The Follow Button uses the same implementation model as the Tweet Button, and its integration is just as simple. By using the Follow Button, you agree to the Developer Rules of the Road. Overview. 10 awesome jQuery snippets. Preloading images Preloading images is useful: Instead of loading an image when the user request it, we preload them in the background so they are ready to be displayed.

10 awesome jQuery snippets

Doing so in jQuery is very simple, as shown below: (function($) { var cache = []; // Arguments are image paths relative to the current page. $.preLoadImages = function() { var args_len = arguments.length; for (var i = args_len; i--;) { var cacheImage = document.createElement('img'); cacheImage.src = arguments[i]; cache.push(cacheImage); } } jQuery.preLoadImages("image1.gif", "/path/to/image2.png"); → Source: target=”blank” links.