布局优化替换CDN

This commit is contained in:
结发受长生
2019-06-13 23:08:29 +08:00
parent 46d2216d53
commit 4f5f3c2b2d
10 changed files with 17 additions and 14 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
<div class="waifu" @mouseover="waifu.showTools=true" @mouseout="waifu.showTools=false">
<div class="waifu-tips" v-text="waifu.tip" v-bind:style="{opacity: waifu.tipOpacity}"></div>
<div style="width: 250px;overflow: hidden;">
<canvas id="live2d" width="650" height="600" @mouseover="linkMouseover('waifu')" style="width: 325px;height: 300px;"></canvas>
<div>
<canvas id="live2d" width="520" height="480" @mouseover="linkMouseover('waifu')" style="width: 260px;height: 240px;"></canvas>
</div>
<div class="waifu-tool" v-show="waifu.showTools">
<span class="icon icon-eye" @mouseover="linkMouseover('tools.eye')" @click="toolsClick('tools.eye')"></span>
+2 -4
View File
@@ -3,16 +3,14 @@
<% if (post.prev){ %>
<a href="<%- url_for(post.prev.path) %>" id="article-nav-newer" class="article-nav-link-wrap">
<div class="article-nav-title">
<i class="icon icon-arrow-circle-o-left"></i>
<%= post.prev.title %>
<i class="icon icon-arrow-circle-o-left"></i>&nbsp;<%= post.prev.title %>
</div>
</a>
<% } %>
<% if (post.next){ %>
<a href="<%- url_for(post.next.path) %>" id="article-nav-older" class="article-nav-link-wrap">
<div class="article-nav-title">
<%= post.next.title %>
<i class="icon icon-arrow-circle-o-right"></i>
<%= post.next.title %>&nbsp;<i class="icon icon-arrow-circle-o-right"></i>
</div>
</a>
<% } %>