LocalStorageDB A Tiny Database Layer For LocalStorage

localStorageDB is a simple layer over localStorage (and sessionStorage) that provides a set of functions to store structured data like databases and tables. It provides basic insert/update/delete/query capabilities. localStorageDB has no dependencies, and is not based on WebSQL. Underneath it all, the structured data is stored as serialized JSON in localStorage (or sessionStorage).

Continue Reading....

Tagged with: HTML5 Tips & Tricks Tools Web Application

Responsive CSS3 Slider Without Javascript

The actual slider is much like any JavaScript slider. It floats all of the content areas (articles) next to each other. And then hides the overflow. We then animate the margin of the inner div, so if we have 5 articles, moving the left-margin -100% would give us the second article.

Continue Reading....

Tagged with: CSS3 Tips & Tricks Web Development

Crazy Tips To Remove Spacial Character Using PHP

Sometimes we are facings spacial character issue while working on any other language except English. PHP programmers you can easily manage English URLs and use them as parameter. But if we trying to push any spacial character like Spanish, Banglai or any other language in URL section then sometimes applications not working properly. Today we are going to know some crazy tips about how to remove spacial characters and replace them with regular English character.

Continue Reading....

Tagged with: Php Tips & Tricks Tutorials

Building Books With CSS3

The new CSS3 features come from the Paged Media Module and the Generated Content for Paged Media Module (GCPM). I used the latest working draft and the latest editor draft of the Paged Media Module to develop my style-sheets.

Continue Reading....

Tagged with: CSS3 Tips & Tricks Tutorials

Magnifying Glass For Image Zoom Using Jquery And CSS3

Learn to make a realistic magnifying glass using Jquery and CSS3. Hover above the image to see the action. The code uses CSS3 box-shadow and border-radius properties to create the magnifying glass. Jquery is used to position it at the cursor coordinates and change the background position accordingly.

Continue Reading....

Tagged with: CSS3 JQuery Tips & Tricks

Create A Pure CSS3 Dropdown Menu

With the help of some advanced selectors a dropdown menu can be easily created with CSS. Throw in some fancy CSS3 properties and you can create a design that was once only achievable with background images and Javascript. Follow this tutorial to see the step by step process.

Continue Reading....

Tagged with: Css Download Resource Tips & Tricks

Simple Hover Effects With CSS Webkit Filters

Simple hover effects created with CSS filters. CSS3 filters are currently supported in WebKit nightlight. Hence the walk through only uses the -webkit prefix for applying the filter effects. By default the images have the filter applied. Hovering disables the filter taking the images to the default.

Continue Reading....

Tagged with: Css Tips & Tricks Web Development