-
Notifications
You must be signed in to change notification settings - Fork 0
/
css9.html
44 lines (37 loc) · 882 Bytes
/
css9.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!--
Multiple Transition Effect =
Rotate any div in 360degree
-->
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#aa{
height: 150px;
width: 200px;
/*background-color: greenyellow;*/
border: 2px solid yellow;
margin-top: 150px;
margin-left: 200px;
color: royalblue;
transition: width 5s, height 5s, transform 5s;
/*background-image: url(creta1.jpeg);*/
}
#aa:hover{
height: 200px;
width: 300px;
transform: rotate(102000000deg);
/*color: darkred;
background-color: hotpink;*/
}
</style>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
</head>
<body>
<div id="aa"><img src="creta1.jpeg" width="200px" height="150px">
<!-- My Name is Pranveer Singh <br>
Its Multiple Transition Effect --> </div>
</body>
</html>