Transition+Transform
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="STYLESHEET" type="text/css" href="web.css">
<title>web design</title>
</head>
<body>
<h1>Transition+Transform</h1>
<p>Hover over the div element below:
</p>
<div></div>
</body>
</html>
CSS Transition+Transform Style
div{
width:100px;
height:100px;
background-color: red;
transition:width 2s,height 2s, transform 2s ;
}
div:hover{
width: 300px;
height:300px;
transform: rotate(180deg);
}
No comments:
Post a Comment