-
Notifications
You must be signed in to change notification settings - Fork 0
/
center.html
47 lines (41 loc) · 919 Bytes
/
center.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>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Center Component Sample</title>
<style>
.center{
width:250px;
height:150px;
background:red;
line-height:150px;
text-align:center;
color:#FFF;
}
</style>
</head>
<body>
<div id="centerAll" class="center">
Center all
</div>
<div id="centerHorizontal" class="center">
Center horizontal
</div>
<div id="centerVertical" class="center">
Center vertical
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/center.js"></script>
<script>
$(function(){
$('#centerAll').center();
$('#centerHorizontal').center({
direction : 'horizontal'
});
$('#centerVertical').center({
direction : 'vertical'
});
});
</script>
</body>
</html>