Skip to content

wujingchao/simple-hexo

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

1.将主题还原成精简的模式
2.使用hexo插件绘制时序图/流程图本地一直有问题,所以引入了
  • jquery-2.1.4.min.js
  • raphael-min.js
  • underscore-min.js
  • sequence-diagram-min.js
  • flowchart-latest.js 直接在post里使用:
  • 时序图
{% raw %}
<div class="diagram_sequence">
Client->Service:bindService
Service-->Client:返回一个messenger对象
Client->Service:通过messenger发送消息
Service-->Handler:分发消息
</div>
{% endraw %}
  • 流程图
{% raw %}
<div class="diagram_flow">
st=>start: Start:>http://www.google.com[blank]
e=>end:>http://www.google.com
op1=>operation: My Operation
sub1=>subroutine: My Subroutine
cond=>condition: Yes
or No?:>http://www.google.com
io=>inputoutput: catch something...

st->op1->cond
cond(yes)->io->e
cond(no)->sub1(right)->op1
</div>
{% endraw %}
3.使用google-code-prettify来高亮代码(需要禁用原来的高亮插件)
4.增加响应式布局,对移动设备的支持
5.增加fancybox,对图片预览支持

About

Blog Theme For Hexo

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 88.3%
  • CSS 10.3%
  • HTML 1.4%