主题预览

Daotin 于 2000-01-01 发布 编辑

标题

这里是 h1

这里是 h2

这里是 h3

这里是 h4

这里是 h5
这里是 h6
# 这里是 h1
## 这里是 h2
### 这里是 h3
#### 这里是 h4
##### 这里是 h5
###### 这里是 h6

段落

段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落一段落

段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落二段落

超链接

TMaize Blog

[TMaize Blog](http://blog.tmaize.net)

引用

这里是引用

> 这里是引用

常见字体样式

斜体

粗体

删除线

_斜体_
**粗体**
~~删除线~~

无序列表演示

有序列表演示

  1. 项目规划
    1. 需求分析
      1. 用户需求
      2. 技术需求
      3. 性能需求
    2. 技术选型
      1. 前端框架选择
      2. 后端技术栈
      3. 数据库选择
  2. 开发阶段
    1. 环境搭建
    2. 功能开发
    3. 测试优化

分割线


---

图片

破事水line 滑稽line

![line](http://xx.com/xx.jpg)

块级别图片

![测试图片](001.jpg)

测试图片

代码行

这是一段文字rm -rf /*这是一段文字

这是一段文字`rm -rf /*`这是一段文字

代码块

blog.encodeHtml = function (html) {
	var o = document.createElement('div')
	o.innerText = html
	var temp = o.innerHTML
	o = null
	return temp
}
```javascript
blog.encodeHtml = function(html) {
var o = document.createElement('div')
o.innerText = html
var temp = o.innerHTML
o = null
return temp
}
```

表格测试

Tables Are Cool
col 3 is right-aligned $1600
col 2 is centered $12
zebra stripes are neat $1
     
| Tables        |      Are      |   Cool |
| ------------- | :-----------: | -----: |
| col 3 is      | right-aligned | \$1600 |
| col 2 is      |   centered    |   \$12 |
| zebra stripes |   are neat    |    \$1 |

数学公式

需要在配置中开启

这是一行话\( \int_0^\infty \frac{x^3}{e^x-1}\,dx = \frac{\pi^4}{15} \)这是一行话

\[ \int_0^\infty \frac{x^3}{e^x-1}\,dx = \frac{\pi^4}{15} \]

插入 html

<div id="htmldemo"></div>
<style>
	#htmldemo {
		height: 30px;
		width: 30px;
		background-color: #00aa9a;
		animation-name: moveX;
		animation-duration: 1s;
		animation-timing-function: linear;
		animation-iteration-count: infinite;
		animation-direction: alternate;
		animation-fill-mode: both;
	}
	@keyframes moveX {
		0% {
			transform: translateX(0px);
		}
		100% {
			transform: translateX(100px);
		}
	}
</style>

插入 iframe

<!-- 属性什么的不要错了,最好用双引号括住 -->
<!-- 网易云的iframe需要做些调整,调整如下 -->
<iframe
	src="//music.163.com/outchain/player?type=2&id=28445796&auto=0&height=66"
	frameborder="0"
	width="100%"
	height="86px"></iframe>