Thursday 19 May 2011

How to create a countdown time showing days / hours / Mins / Secs



For Time being I have created it for 7th August 2012 for my B'DAY :)

Days    Hours    Mins    Secs


:

:

:

Friday 29 April 2011

Creating a CSS Layout from scratch

Hi All,

This blog is for all the beginners or learners of css. Check out the link I have given below It shows the tutorial for creating a css layout.
http://www.subcide.com/articles/creating-a-css-layout-from-scratch/P2/


Cheers
Snehal

Thursday 28 April 2011

Fading Square Transition Effect

Hi All,

This blog is for all those learners of flash like me, who would like to create an interactive flash banner having some good transition effect for clients website rather than giving the normal fade in and fade out effect which is the easiest thing to do in flash ;-)

Refer the link given below, which show the Fading Square Transition Effect in Flash
http://www.flash-game-design.com/flash-tutorials/fadingSquareEffect-flash-tutorial.html

Cheers
Snehal



Background Image for Input Button with CSS (works in both Firefox and IE)

I was having trouble with setting a background image for an input button in IE 6. The background-image property that worked in Firefox 2.0 just did not have any effect on IE6. After a bit of googling, I realized that the background-image property will not work on IE and that we need to use the background property. Here’s a snippet that works on both browsers:
<input type=”button” class=”button” title=”Background Image” />
.button{
      background: white url(‘images/imagebutton.gif’) no-repeat top;
      width: 150px;
      height: 40px;
      color:white;
}