-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path旋转.html
47 lines (44 loc) · 1.29 KB
/
旋转.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
45
46
47
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="Content/bootstrap.min.css" rel="stylesheet" />
<style>
.trans {
margin: 0 auto;
border: 1px solid green;
width: 100px;
height: 100px;
-webkit-transition: all ease 1s;
-moz-transition: all ease 1s;
-o-transition: all ease 1s;
transition: all ease 1s;
}
.trans:hover {
transform:rotate(360deg) scale(1,1);
box-shadow: 0 0 10px #498deb;
}
</style>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-12" style="padding:100px 0;">
<div class="trans">
旋转效果
</div>
</div>
</div>
</div>
<script src="Scripts/jquery-3.2.1.min.js"></script>
<script src="Scripts/bootstrap.min.js"></script>
<script>
$(function () {
})
</script>
</body>
</html>