background preloader

Jquery

Facebook Twitter

Plugin

A Simple jQuery Slideshow | Jon Raasch’s Blog. In the interest of following jQuery’s motto of “writing less and doing more,” let’s write a simple slideshow using jQuery, JavaScript and a bit of CSS. Download the complete slideshow hereRead the FAQs For starters, our main goal should be keeping the markup as clean as possible: Now let’s use CSS to position the images on top of each other and bring the active image to the top level with z-index: Due to absolute positioning, we need to define the height of the slideshow DIV. Also, notice that we defined three different z-indexes—we will manipulate these soon using jQuery. For the slideshow animation we are going to switch between each photo at a set rate. Function slideSwitch() { var $active = $('#slideshow IMG.active'); var $next = $active.next(); $next.addClass('active'); $active.removeClass('active'); } $(function() { setInterval( "slideSwitch()", 5000 ); }); Here we set a JavaScript interval to call slideSwitch() every 5 seconds.

Next we should incorporate a fade animation. 30 Essential Controls. By Theresa Neil As Bill mentioned in an earlier post, we don’t want to limit this blog to just the principles and patterns found in the book. For that you can check out our Explore the Book section. This is the second article in a three part series on patterns and principles for RIA design. Standard Screen Patterns: 12 patterns w/100 examplesEssential Controls: 30 controls for RIA design and developmentComponents for Commonly Requested Features: 15 patterns and examples Every designer has a set of controls they rely on to communicate an effective UI.

This is my library of essential controls. Unfortunately, no single RIA framework offers all 30 of these. The frameworks reviewed include: Flex, Laszlo, Silverlight and 12 Ajax frameworks and toolkits: ExtJS, Dojo, YUI, Google Web Toolkit, Prototype/script.aculo.us, JQuery, MooTools, MochaUI, SproutCore, LivePipeUI,IT Mill, Backbase. 01. Google’s Auto-Complete 02. Carousel Prototype carousel widget Coverflow MediaEvent Service’s Slideflow 03. 04. Webdesign und Webentwicklung im Webstandard-Blog - Best of jQuer. JavaScript - 12 Sep, 2008 Anwendungen zum JavaScript-Framework jQuery gibt es zahlreiche, aber nicht alle erfüllen unbedingt die Prädikate "nützlich & praktikabel".

Aus diesem Grund wurden für Euch ein paar jQuery-Plugins & jQuery-Tutorials aus den verschiedensten Einsatzgebieten zusammengetragen. Von verschiedensten Navigationsvarianten, über Zoom-Funktionen, bis hin zur dekorativen Bilder-Galerie. Mehr jQuery-Tutorials und Plugins gibt es in Teil 2 und Teil 3 der Serie "Best of jQuery-Tutorials". jQuery-Plugin - Tab-Navigation jQuery-Plugin - Moving Navigation jQuery-Plugin - Sliding Navigation jQuery-Plugin - jParallax jQuery-Plugin - Fancy-Zoom jQuery-Plugin - jQZoom jQuery-Plugin - Text-Zoom jQuery-Plugin - Context-Highlighting jQuery-Plugin - jQuery-Charts jQuery-Plugin - Decorative Gallery jQuery-Plugin - Ajax Zoom Buch-Tipp: jQuery: Das Praxisbuch Mit jQuery kann man zaubern.

. * Amazon-Partnerlink Ähnliche Artikel zum Thema jQuery: SCRIPTR » jQuery, MooTools, Protoype, YUI, Scriptaculous… The Lightbox Clones Matrix. Improve your jQuery - 25 excellent tips. Script & Style » Automatically Generate a Photo Gallery from. Two years ago Chris Coyier wrote an outstanding tutorial detailing how you can generate a photo gallery based on the images within two directories: a thumbnails directory and an originals directory.

I've decided to take his tutorial a step further by showing you how to generate thumbnails for the gallery using PHP. I've also implemented a MooTools lightbox: Smoothbox. The following code will show you how to create a beautiful photo gallery by simply dumping your photos in a directory. The CSS The images/links will be floated next to each other. The other option would be to use a table. The PHP: Utility Functions We'll use three utility functions to make the system work: get_files (retrieves all of the files in a given directory), get_file_extension, and make_thumb (generates a thumbnail image from a source image). The PHP: Setting and HTML Generation The MooTools JavaScript / Smoothbox All you need to do is include the JavaScript file. That's it! Be Heard Older Newer.