添加加载动画
添加加载动画
方法一
- 在
./theme/pure/layout/head.ejs
中添加
1 | <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/HCLonely/images@master/others/loading.min.css"> |
- 在
./theme/pure/layout/layout.ejs
的<body>
标签前添加:
1 | <div id="loading-box"> |
- 在
./theme/pure/layout/layout.ejs
的</body>
标签前添加:
1 | <script> |
参考链接
方法二
- 在
./theme/pure/_config.yml
中添加配置
1 | preloader: |
- 在
./themes/pure/layout/_script
中新建loaded.ejs
文件
1 | <% if (theme.preloader.enable) { %> |
在
./theme/pure/layout/_comment/head.ejs
中添加样式- spinner-box风格样式
1
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/zyoushuo/Blog@latest/hexo/css/loading_style_1.css" >
gear风格样式
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/zyoushuo/Blog@latest/hexo/css/loading_style_2.css" >
1
2
3
4
5
4. 在`blog\themes\pure\layout\layout.ejs`的`<body>`标签下引入创建文件的地址:
```ejs
<%- partial('_s/loaded') %>
参考链接: