-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangelog.html
160 lines (141 loc) · 4.97 KB
/
Changelog.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>MUUI</title>
<meta name="keywords" content="移动样式库,mobile样式库,移动bootstrap,mobile-bootstrap,css,muui" />
<meta name="description" content="简洁、直观的移动前端开发框架,让移动web开发更迅速、简单。" />
<script src="assets/prettify.js"></script>
<script src="assets/jquery-1.8.2.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.js"></script>
<link rel="stylesheet" type="text/css" href="assets/bootstrap/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="assets/base.css" />
</head>
<body>
<nav class="navbar navbar-inverse navbar-static-top top-navbar" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="./index.html">MUUI</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li>
<a href="./1.基本样式.html">1.基本样式</a>
</li>
<li>
<a href="./2.基础样式.html">2.基础样式</a>
</li>
<li>
<a href="./3.交互.html">3.交互</a>
</li>
<li>
<a href="./4.字体图标.html">4.字体图标</a>
</li>
<li>
<a href="./Changelog.html">Changelog</a>
</li>
</ul>
</div><!-- /.navbar-collapse -->
</div>
</nav>
<header class="jumbotron subhead">
<div class="container">
<h1>MUUI</h1>
<p class="lead">
简洁、直观的移动前端开发框架,让移动web开发更迅速、简单。<a href="https://yaotaiyang.github.io/muui/example/">查看</a>
</p>
</div>
</header>
<div class="container content">
<div class="row">
<div class="col-md-3">
<ul class="nav nav-list bs-docs-sidenav affix">
<li class="level_1">
<a href="#index_Change log" title="Change log">
<i class="icon-chevron-right"></i>Change log
</a>
</li>
<li class="level_2">
<a href="#index_0.2.0" title="0.2.0">
<i class="icon-chevron-right"></i>0.2.0
</a>
</li>
<li class="level_2">
<a href="#index_0.1.0" title="0.1.0">
<i class="icon-chevron-right"></i>0.1.0
</a>
</li>
<li class="level_2">
<a href="#index_0.0.1" title="0.0.1">
<i class="icon-chevron-right"></i>0.0.1
</a>
</li>
</ul>
</div>
<div class="col-md-9">
<section>
<h1 id="change-log">Change log</h1>
<h2 id="0-2-0">0.2.0</h2>
<ul>
<li>2017-05-11:创建0.2版本,修改容易冲突的class,带上muui前缀<h2 id="0-1-0">0.1.0</h2>
</li>
<li>2017-05-11:发布0.1版本<h2 id="0-0-1">0.0.1</h2>
</li>
<li>2017-03-12:创建muui</li>
</ul>
</section>
</div>
</div>
</div>
<footer class="footer">
<div class="container">
<p class="pull-right">
<a href="#">Back to top</a>
</p>
<!--<p>源码详情查看<a href="https://github.com/yaotaiyang/muui">muui</a></p>-->
<ul class="footer-links">
<li><a href="https://github.com/yaotaiyang/muui">github 地址</a></li>
<li><a href="hhttps://yaotaiyang.github.io/muui/example/">移动展示</a></li>
<li><a href="https://github.com/yaotaiyang/muui/issues?state=open">提交bug</a></li>
</ul>
</div>
</footer>
<script>
$(function() {
$('pre').addClass('prettyprint');
$('td pre').removeClass('prettyprint');
prettyPrint();
var $window = $(window);
var sidenav = $('.bs-docs-sidenav');
if (sidenav.height() < window.innerHeight) {
sidenav.affix({
offset: {
top: function () {
return $window.width() <= 980 ? 290 : 210
},
bottom: 200
}
});
} else {
sidenav.removeClass('affix');
}
$(".content").find('h1, h2, h3, h4, h5, h6').each(function () {
var node = $(this);
// 总是设置id
node.attr("id", node.data('id') || "index_" + node.text());
});
$('.bs-docs-sidenav .accordion-marker').on('click', function(event) {
var current = $(event.currentTarget);
current.find('.glyphicon').toggleClass('glyphicon-chevron-right glyphicon-chevron-down');
});
});
</script>
</body>
</html>