Zoom
Trash
Photobooth with PHP, jQuery and CSS3. In this tutorial, we will be building a jQuery and PHP powered photobooth.
It will allow your website visitors to take a snapshot with their web camera and upload it from a neat CSS3 interface. As you might know, it is not possible to access web cameras and other peripheral devices directly from JavaScript (and it won't be for some time). However there is a solution to our problem - we can use a flash movie. Flash has perfect web camera support, and is installed on nearly all internet - enabled computers. The solution we are going to use for this app is webcam.js. The first step to building our Photobooth is laying down the HTML structure of the main page. Index.html <! There are three main divs in the page: #topBar displays the headings; #photos is where the images are inserted after they are requested with jQuery's $.getJSON method; #camera holds the webcam.swf movie (which we are using to communicate with the web camera).
The control buttons are divided in two .buttonPane divs. 45 jQuery Plugins And Tutorials To Enhance Your Forms. Don't Forget to participate in a contest where you can win an amazing e-Commerce template from TemplateMonster.
Creating awesome and appealing forms for your website has now become easy, thanks to jQuery plugins. Here we are sharing with you a collection of some extremely useful plugins and tutorials to help you create beautiful and awesome web forms. Web forms are the crucial element for any website as website visitors use such forms to interact with the webmaster. Therefore, keeping them neat and functional while maintaining their aesthetic appeal is important.
Here is the complete list. 33 Excellent jQuery Tutorials. RSS Feeds Reader Plugin for jQuery - Zazar Website Builder. This plugin will read RSS feeds from website URL using the Google Feeds API.
Horizontal Sub-nav with CSS & jQuery - Subnavigation Tutorial - CSS Tutorial - jQuery Tutorial. Portfolio Image Navigation with jQuery. Today we want to create a portfolio image navigation template with jQuery.
The idea is to show some portfolio items in a grouped fashion and navigate through them in all 2D ways (horizontal/vertical). Either the arrows or the little boxes below the current image can be used in order to navigate. View demo Download source The beautiful photography is by Angelo González. Check out his Flickr photostream or follow him on Twitter @ag2r. The Markup For the markup, we’ll have a main wrapper div with the background, the arrows and the gallery containers inside: Now, let’s take a look at the style. Craftyslide, un slideshow jQuery simple et léger - Megaptery. Les plugins jQuery qui génèrent un diaporama sont nombreux, mais ils sont souvent lourds à charger du fait des nombreuses options qui ne sont pas forcément utilisées.
Avec Craftyslide, on va à l’essentiel : un slideshow simple, léger et efficace ! Pourquoi Craftyslide ? Craftyslide est né d’une raison assez originale. 10 Excellent Tools for Responsive Web Design. By Jason Gross So, you’ve decided to venture into the creation of responsive web designs.
Wonderful! With the browsing landscape diversifying into mobile devices, netbooks, desktops and so forth, responsive web designs allow web designers to provide different layouts for specific devices (based on screen size and browser features) giving site visitors an optimal user experience. So now, you’ve determined that it would be beneficial to create responsive web designs. 40 Best Free jQuery Plugins For Web Developers. 20 jQuery Tutorials Teaching Super Cool Visual Effects.
Tweet! Put Twitter on your site with this simple, unobtrusive jQuery widget. Inline form validation - un plugin de validation de formulaire jquery. Lors de la création d'un formulaire en ligne, vérifier que tous les champs sont remplis correctement peut être une véritable corvée.
La pénibilité croit exponentiellement avec la taille du formulaire. Heureusement, ce plug-in jquery permet de vous faciliter la tâche en ajoutant un contrôle sur chaque champ de votre formulaire. Il existe différents types de validateurs : Vertical Sliding Accordion with jQuery. Today we want to share a slick and flexible vertical jQuery accordion with you.
The main idea is to expand the accordion slices on click and show some more information. The other slices will become less opaque and squeezed. When navigating to the next slice using one navigation arrows, a new slice will slide in from the top or the bottom. Once a slice is open and we navigate, the subsequent slice will open on slide. View demo Download source The beautiful portrait photography is by Images by Alan Turkus. We also use the jQuery Mousewheel Plugin by Brandon Aaron which allows us to navigate through the accordion using the mouse wheel. The options for this plugin allow to customize the height and width, the number of slices visible, the height of an expanded slice and others. Highcharts - Interactive JavaScript charts for your webpage.
Animated Text and Icon Menu with jQuery. Today we want to show you how to create a slick menu with a nice animation feature on hover.
The idea is to make some elements slide out, change and animate the background color of the item and then slide the elements back in with a different color. View demoDownload source The inspiration for this menu comes from the website of the Pelican Miami Beach Hotel: The icons are taken from the incredible Noun Project that “collects, organizes and adds to the highly recognizable symbols that form the world’s visual language, so we may share them in a fun and meaningful way”. Visit the website of The Noun Project. So, let’s get started! The Markup. LeanModal - a JQuery modal plugin that works with your CSS. Blueberry - A simple, fluid, responsive jQuery image slider. What is Blueberry?
Blueberry is an experimental opensource jQuery image slider plugin which has been written specifically to work with fluid/responsive web layouts. A brief history With the popularity of smart phones and tablet devices responsive/fluid web layouts have become an important part of modern web design. Working on a new project I decided to use the 1140px grid from cssgrid.net. The design I was working on included a large image slider on the front page.
10 jQuery Custom Scrollbar Plugins. 10 jQuery Scrollbar Plugins to help you display present whatever content you have in a more interactive & more responsive way. Untitled. Jquery.qrcode.js is jquery plugin for a pure browser qrcode generation. It allow you to easily add qrcode to your webpages. It is standalone, less than 4k after minify+gzip, no image download. It doesnt rely on external services which go on and off, or add latency while loading. It is based on a library which build qrcode in various language. jquery.qrcode.js wraps it to make it easy to include in your own code. Image Wall with jQuery. Today we want to show you how to create a neat image wall with jQuery. The idea is to scatter some thumbnails with different sizes on the page and make a ribbon slide in when we click on the picture. The ribbon will show some description next to the picture and […] View demo Download source.
Ajax AutoComplete jQuery Plugin for Textfields. Ajax Autocomplete for jQuery allows you to easily create autocomplete / autosuggest boxes for text input fields. It is built with focus on performance. Results for every query are cached and pulled from local cache for the same repeating query. If there are no results for particular query it stops sending requests to the server for other queries with the same root. It has been tested on IE 7+, FF 2+, Safari 3+, Opera 9+. Sliding Letters with jQuery. Today we have a neat little effect for you. We want to bring some life to the standard hover effect by playing around with the letters in an anchor word. The aim is to slide in letter by letter when hovering over a link element. We can either have the same word or a different […] Today we have a neat little effect for you. We want to bring some life to the standard hover effect by playing around with the letters in an anchor word. We will be using the Lettering.js jQuery Plugin which you can find on Github.
Case Study: jQuery Fixer Upper. Recently in the CSS-Tricks Forums, user named Waffle posted the following bit of jQuery JavaScript: $(function(){ $('.ContactArea').hide(); $('.Portfolio').hide(); $('.WebDesign').hide(); $('.AboutCoadin').hide(); $('li.Contact').click(function(){ $(".ContactArea").slideToggle(); }); $('li.PortfolioBtn').click(function(){ $(".Portfolio").slideToggle(); }); $('li.WebDesignBtn').click(function(){ $(".WebDesign").slideToggle(); }); $('li.AboutBtn').click(function(){ $(".AboutCoadin").slideToggle(); }); }); This user's actual question was how they can extend their code to add functionality to scroll the page down to the areas as they expand.
But in looking at code like this with a slightly more experienced eye, there are things that stick out as things that we can likely improve upon. Since I bet there are some of you folks that are at Waffle's level and writing code like this, I thought we could use this as a case study to learn from. It works, but... Awkward Showcase – A jQuery Plugin. JbhSlider, un slider en jQuery - par Jacques Bodin-Hullin.
Apprise - The attractive alert alternative for jQuery. The initial release of Apprise has been a major success and is often what this site is most commonly associated with. As far as I've been able to track, Apprise has been downloaded over 23,000 times and has been mentioned in over 46,000 blogs. Which is fantastic, especially for something that I've never been very proud of. I've wanted to update, and change the UI, of this for over a year now. Time has finally permitted and it's, finally, ready. Demos Let's get right down to business.
Pretty slick, right? Let's take a peak at the default settings before we change the options around a bit. You'll notice that the buttons are completely customizable and can easily be altered using your own CSS rules. Let's try another demo, but changing the settings around a bit. Apprise - Une alternative élégante aux alert Javascript en jQuery.
Apprise est un plugin jQuery permettant de proposer une solution élégante aux fameuses alert() Javascript. Il faut l'avouer, les alert() javascript dans un site en prod, c'est franchement laid ! Apprise propose de reproduire l'effet de ces alert JS mais avec style et de façon moins bloquante. Les possibilités d'Apprise sont nombreuses: 35 plugins jQuery rien que pour vos sites web ! Rotating Image Slider with jQuery. In the following tutorial we will create an asymmetrical image slider with a little twist: when sliding the pictures we will slightly rotate them and delay the sliding of each element. The unusual shape of the slider is created by some elements placement and the use of thick borders. Convert Elements into Mini Canvas Charts with jQuery. 8 ressources Jquery pour sites fullscreen. Les sites avec un webdesign plein écran, envahissent le web.
Pour la simple et bonne raison que leur mise en page est souvent simple, efficace et permet de mettre avant des visuels qui en jettent. Circular Discography Template with jQuery. DiagonalFade : A jQuery plugin. A jQuery Plugin That Rumbles Elements. About The Plugin. Superfish - Suckerfish on 'roids. Overlay Effect Menu with jQuery. Magnet letters tentative with JQuery and CSS3. jQuery : écrivez moins pour faire plus ! IxEdit. Expanding Image Menu with jQuery. Effet de transition de couleur sur les liens avec jQuery. Dynamisez vos sites web avec Javascript ! Create a Slick and Accessible Slideshow Using jQuery.
CoffeeScript. Better Check Boxes with jQuery and CSS. 15 Plugins jQuery utiles à connaitre pour janvier 2011 - ressources. 10 jQuery Plugins for Easier Google Map Installation. Moving Boxes Content with jQuery. jQuery Masonry · David DeSandro. How to Create a Slick Animated Content Menu with jQuery.