Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
dntzhang committed Jun 9, 2017
1 parent 2b4a63f commit f992a88
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
<title>AlloyLever - 1kb代码搞定开发调试发布,错误监控上报,用户问题定位</title>
<link rel="shortcut icon" href="asset/curvejs.ico">
<title>AlloyLever - 1kb js library contains development debugging, error monitoring and reporting, user problem localization features</title>

<style>
html,body{
padding:0;
Expand Down Expand Up @@ -211,7 +211,7 @@
</div>
<div class="info">
<p class="description">
1kb代码搞定开发调试发布,错误监控上报,用户问题定位
1kb js library contains development debugging, error monitoring and reporting, user problem localization features
</p>
<div class="links">
<a class="button blue" href="https://github.com/AlloyTeam/AlloyLever#使用指南" target="_blank">
Expand All @@ -224,7 +224,7 @@
<svg viewBox="0 0 180 60">
<path d="M10,10 C10,10 50,9.98999977 90,9.98999977 C130,9.98999977 170,10 170,10 C170,10 170.009995,20 170.009995,30 C170.009995,40 170,50 170,50 C170,50 130,50.0099983 90,50.0099983 C50,50.0099983 10,50 10,50 C10,50 9.98999977,40 9.98999977,30 C9.98999977,20 10,10 10,10 Z"></path>
</svg>
<span>点我6次召唤神龙</span>
<span>Click me 6 times!</span>
</a>
<a class="button green" href="https://github.com/AlloyTeam/AlloyLever" target="_blank">
<svg viewBox="0 0 180 60">
Expand Down Expand Up @@ -268,20 +268,21 @@
entry:"#entry"
})

console.log('这是log信息')
console.info('这是info信息')
console.debug('这是debug信息')
console.warn('这是warn信息')
console.error('这是error信息')
console.log('this is log content')
console.info('this is info content')
console.debug('this is debug content')
console.warn('this is warn content')
console.error('this is error content')

</code>
</pre>
<script>
console.log('这是log信息')
console.info('这是info信息')
console.debug('这是debug信息')
console.warn('这是warn信息')
console.error('这是error信息')

console.log('this is log content')
console.info('this is info content')
console.debug('this is debug content')
console.warn('this is warn content')
console.error('this is error content')

//入口
//AlloyLever.entry('#entry')
Expand Down

0 comments on commit f992a88

Please sign in to comment.