-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (49 loc) · 1.25 KB
/
index.html
File metadata and controls
50 lines (49 loc) · 1.25 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>赵进召的个人博客</title>
<link rel="stylesheet" href="src/libs/style/bootstrap-3.3.7.min.css">
<style type="text/css">
.list p {
display: block;
height: 14px;
line-height: 14px;
}
.list a {
display: block;
}
.list a:hover{
color: #337ab7;
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-4 col-md-offset-4 text-center">
<img src="src/images/avatar.jpg" class="img-circle" style="margin: 10px 0; width: 100px;">
<p class="text-success">赵进召 丨 <a href="mailto:1003837059@qq.com">1003837059@qq.com</a></p>
</div>
</div>
<hr>
<h3>JS案例</h3>
<div class="list">
<p>
<a href="src/docs/1-insert_topic.html" target="_blank">腾讯微博-插入话题效果</a>
</p>
</div>
</div>
<script src="src/utils/tween.js"></script>
<script src="src/utils/common.js"></script>
<script src="src/utils/stringText.js"></script>
<script>
var aListP = document.querySelectorAll('.list p a');
for(var i = 0; i < aListP.length; i++) {
new StringText(aListP[i]);
}
</script>
</body>
</html>