Monday 31 July 2017

Progress Bar

.abc {
    width:50px;
    height:50px;
    border:5px solid #000000;
    border-top-color:red;
    border-radius:100%;
    position:fixed;
    left:0;
    right:0;
    top:0;
    bottom:0;
    margin:auto;
    animation:round 2s linear infinite;
    }
@keyframes round {
    from { transform:rotate(0deg)
    }
    to {
        transform:rotate(360deg)
    }
}


@{
    ViewBag.Title = "Index";
    Layout = null;
}

<link href="~/Content/test.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="~/scripts/jquery-1.10.2.js"></script>
<h2></h2>
<div class="container">
 
    <div class="abc">
    </div>
</div>



No comments:

Post a Comment