jQuery Scrolling Deck Plugin

John Polacek’s jQuery Scrolling Deck is a plugin that makes your scrolling presentation easy.   Here’s a rundown of the code:   $(document).ready(function() { var deck = new $.scrolldeck(); });   You can modify the settings $(document).ready(function() {   var deck = new $.scrolldeck({     buttons: ‘.nav-button’,     slides: ‘.slide’,     duration: 600,     easing: [...]

Continue Reading →

How to Create Unicode Icons With CSS

These Unicode icons are a neat an alternative to using images (i.e. gifs) as symbols for your website. CSS a[href^="mailto:"]:before { content: “\2709″; } .phone:before             { content: “\2706″; } .important:before         { content: “\27BD”; } blockquote:before         { content: “\275D”; } blockquote:after          { content: “\275E”; } .alert:before             { content: “\26A0″; } :before, :after { color: purple; } [...]

Continue Reading →

Incredible CSS Transitioning ShareBar

This cool animated share button transforms from one single element into four elements each representing a link to a social site! This Sharebar uses the following pseudo classes: :first-child:before :nth-child :last-child :hover And some CSS, namely: box-shadow, transitions, border-radius, transform, and gradient background. Click on the image to view the transitioning demo. You can also [...]

Continue Reading →

CSS HoverBoard 3D

The HoverBoard 3D effect, created by Ryan McLaughlin, replicates Pranav Pramod‘s version which you can see here. Click on the image above to view Ryan’s demo!   Check out the code below: HTML <div id=”container”> Hello there. <div id=”hover-flip”> Peek-a-boo! <p>Hover meh</p> </div> </div>   CSS body { background: #555; color: #555; font-family: ‘helvetica neue’, [...]

Continue Reading →

CSS3 Background Clip

Designer Trent Walton‘s CSS3 Background Clip is his version of the Quoting Lebowski series’ design, mimicking its styles, fonts and colors without the use of any Photoshop. Just pure CSS, folks! Here is the CSS structure. Style.css .itried {font-size: 50px;} .css {font-size: 206px;letter-spacing: 5px;line-height: 1;} .itworked { font: italic 60px/0 “bistro-script-web-1″,”bistro-script-web-2″, cursive; text-transform: lowercase; margin-bottom: [...]

Continue Reading →

Bootstrap Image Gallery – A jQuery Gallery Slider

If you want a  simple and straightforward way of presenting your online portfolio then try Bootstrap Image Gallery. Created by Sebastian Tschan (a.k.a. blueimp), this extension of Twitter’s Bootstrap toolkit for its Modal dialog provides very easy navigation between sets of gallery images, plus all of the essential attributes and functions that other image slider [...]

Continue Reading →

CSS and HTML Shadow Experiments

This HTML and CSS tutorial by the zurb.com web developers recreates the shadow effect a la Pink Floyd’s album cover of their classic ’73 hit LP. For the rainbow element, <div id=”rainbow”> is used. HTML /* All you need is one element to style. */ <div id=”rainbow”> </div> CSS /* Get some basic styles down [...]

Continue Reading →

Filter Data with jQuery

Ever noticed how shopping sites can filter out certain items according to the visitor’s preferences? Here’s a quick and very helpful tutorial that will teach you how to do something similar to that without any need for database calls or page refreshes. Let’s begin with the CSS structure to make the layout presentable. /* SIMPLE [...]

Continue Reading →

Create an Image Menu with jQuery

The web developers at Maui Website Design have designed a  dynamic image menu that allows you to navigate easily through any visual content with a Motools-inspired effect, powered by jQuery Javascript. The menu’s main functions require a jQuery-compatible script, a valid XHTML, a Motools-like sliding effect, and it should be lightweight. It comes in two [...]

Continue Reading →

Create a Heart Shape With Pure CSS3

For celebrating Valentine’s Day, this is a great tutorial from Web Froze where you get to use pure CSS3 to create a nice heart shape for your web design graphics. Below are the following codes to achieve this. CSS .heart-shape { position: relative; width: 100px; height: 90px; margin:10px 0px; } .heart-shape:before, .heart-shape:after { position: absolute; [...]

Continue Reading →

Page 2 of 6«12345»...Last »