Have you ever wondered on how to create a megamenu for your site? Dont know what a mega menu is? Ok look at the top navigation of this site. You can see that the drop down menus are in multiple columns. You can easily extend this to support any html inside like forms, images etc.. […]
Archive for the ‘Webdesign Tuts and Resources’ Category
Box2D JS
Box2DJS is a JavaScript port of the Box2D Physics Engine, and was created by Robert Kieffer. The original Box2D engine was designed as a 2D rigid body simulation library for games. Programmers are able to use it to make objects move in believable ways and make the world seem more interactive. Box2D is open source with a strong community, numerous […]
18 best Educational, Academic, University websites collection
Here is a collection of best educational websites of certain colleges and universities. Most of the educational institutions have an outdated website or they are not even bothered about updating it regularly. Some are still using the table designs of 1990’s. But here are a few exceptions to that. 01) University of Nottingham 02) Emily […]
script to create a php site crawl robot easily
The following tutorial is a simple example of how to create a site crawl robot with php. This can be used for search engines, creating caches of your sites at regular intervals etc. The crawler uses php’s CURL library to fetch the URL contents. It will then look for an anchor tag inside the page […]
IE7 error : SCRIPT1028: Expected identifier, string or number
I just noticed today only, that the animated sliders in our home page is not loading in IE7 when I logged in from my friends PC which was running in IE7. Just did a casual visit to our website and found the sliders are not loading. I didn’t noticed it initially because most of our […]
PHP code to create a calendar for the month
This code snippet will help you to create a calendar through a few lines of php code which you can easily style with simple css and html. You can easily create your php web based calendar in just two steps. You may ask why this is needed when many calendar scripts are out. You are […]
Show a pre loader until the Big image completely loads
This is a simple method of showing a pre loader to users until the loading of a big image in your webpage is completed. Sometimes when you embed a big image inside your webpag, it will take minutes to get it loaded completely or at least few seconds before the first bit of it is loaded. In this time […]
Create a simple photogallery with jQuery in five minutes
This is a simple tutorial which will help you to create a simple photo gallery system for your web project in less than five minutes using HTML, CSS, and JavaScript (jQuery). Following is the screenshot of the final product. Step 1: Load the jQuery library <script src=”http://code.jquery.com/jquery-1.7.2.min.js”></script> Step 2: The HTML Markup The most important […]