Sunday 31 May 2015

Hide or Display Computer/Recycle bin Icon from desktop


To hide or display the Computer/Recycle bin Icon from desktop follow these steps:

  • Right click anywhere on the desktop
  • Select Personalize

  • In next screen Click on ‘Change desktop icons’.

  • Select the icons that you want to display in your desktop. Checking Computer’ check box will show the my computer icon.

  • Click Ok to save the changes

Thursday 14 May 2015

Blinking Effect by Css



To use above effect just write down the following CSS rules in HEAD section or in external css file :


.blinking{
    animation-name: blinking;   /*  animation name which is attached to .blinking class */
    animation-duration:1s;
      animation-iteration-count:infinite;   /*this effect will run for infinite times*/
      animation-direction: alternate;  

}


@keyframes blinking {
      from {
        opacity:1;
    }

    to {
        opacity:0.7;
    }
}

@-moz-keyframes blinking {
    from {
        opacity:1;
    }

    to {
        opacity:0.7;
    }
}

@-webkit-keyframes blinking {
     from {
        opacity:1;
     }

    to {
        opacity:0.7;
    }
}


After that just assign the class="blinking" to any HTML element to have this effect. To use this in ASP.NET add:

CssClass="blinking"

Note: Sometimes animations not work on Google Chrome, So use Mozilla Firefox