-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathborderTest.html
60 lines (55 loc) · 1.25 KB
/
borderTest.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
48
49
50
51
52
53
54
55
56
57
58
59
60
<head>
<link rel="stylesheet" type="text/css" href="css/bootstrap-grid.min.css" />
<!--CSS RESET-->
<link href="./css/nicebord.css" rel="stylesheet" type="text/css" />
<style type="text/css">
body {
width: 100%;
overflow: hidden;
}
.row,
.row a {
text-align: center;
color: #d5d6e2;
text-decoration: none;
}
.aimg {
margin: 10px auto;
}
</style>
</head>
<p></p>
<a href="#" id="first">rrrrrr</a>
<a href="#" class="nice">kkkkk</a>
<a href='#' class='aimg'>sssss</a>
<!--边框插件-->
<script src="js/jquery-1.11.0.min.js" type="text/javascript"></script>
<script src="./js/nicebord.js"></script>
<script>
$(document).ready(function(){
$('#first').nicebord({
color: '#000',
orientation: 'ackw',
size:5,
speed:200,
direction:true,
center:true
});
$('.nice').nicebord({
color: '#000',
orientation: 'ackw',
size:3,
pos:'top,bottom',
speed:500
});
$('.aimg').nicebord({
color: '#000',
orientation: 'ckw',
size:5,
speed:200,
direction:false,
fix:true,
center:true
});
});
</script>