Tuesday 3 February 2015

To Make a Preloader Using HTML and CSS

Hello readers,
If you want to make a preloader using HTML and CSS follow the below code:

Html


        <div class="circle">

        <div class="inner">
        <div class="spot"></div>
        </div>
        </div>
        <h1>loading... </h1>

    CSS


        @-webkit-keyframes spin {

        0% {
        opacity: 0.25;
        }
        50% {
        opacity: 1;
        background: red;
        }
        
To read this full blog on How To Make a Preloader Using HTML and CSS visit FindNerd . As it is an effective technology forum, so here you can also ask questions & look for various programming queries along with their solutions including android, c, java, php programming questions and answers etc. 

No comments:

Post a Comment