Oldalak

Saturday, June 18, 2016

Animation with CSS




Animation with CSS

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Transform</title>

<style type="text/css">

#div1{
    width:300px;
    height:300px;
    background:skyblue;}
   
#div2{
    width:100px;
    height:100px;
    line-height:100px;
    background:blue;
    transition:all 1s ease-in-out;}
   
#div2 p{
    color:white;
    text-align:center;}

#div2:hover{
    width:200px;
    border-radius:30px;
    background:red;
    transform:scale(0.8);}

</style>


</head>

<body>


<div id="div1">
    <div id="div2">
        <p>Hello</p>
    </div>
</div>

</body>
</html>




No comments:

Post a Comment