-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (33 loc) · 1011 Bytes
/
index.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
<!doctype html>
<html data-ng-app="app">
aaaa
<head>
<title>lee6e05</title>
<meta charset="utf-8">
<link rel="stylesheet" href="css/css/bootstrap.min.css">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div class="container" data-ng-controller="appCtrl">
<div class="col-md-4" ng-repeat="x in names" ng-style="{
'padding':'10px'
}">
<div ng-style="{
'color':'red',
'padding':'10px',
'text-align':'center',
'background':'rgb(244,244,90)'
}"> {{x|date:'yyyy-MM-dd'}} </div>
</div>
</div>
<script src="js/angular.min.js"></script>
<script src="js/animate.js"></script>
<script src="js/app.js"></script>
<!--配置文件-->
<!--<script src="js/config.js"></script>-->
<!--延迟加载-->
<!--<script src="js/config.lazyload.js"></script>-->
<!--路由-->
<!--<script src="js/config.router.js"></script>-->
</body>
</html>