Hexo博客主题之Icarus的图片轮播效果

分享来自一位大佬网站首页的图片轮播效果

实现步骤

第一步:按照路径打开themes/hexo-theme-icarus-master/layout/index.ejs,修改index.ejs如下:

1
2
3
4
5
6
7
8
9
10
11
//修改部分
<%- _css('css/main_banner') %>
<div id='banner' class='card'></div>
<%- _js('js/main_banner', true) %>
//修改部分
<% page.posts.each(function(post){ %>
<%- _partial('common/article', { post, index: true }) %>
<% }); %>
<% if (page.total > 1) { %>
<%- _partial('common/paginator') %>
<% } %>
Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×