dusign / hexo-theme-snail

This is a hexo theme
https://www.dusign.net
Apache License 2.0
106 stars 43 forks source link

首頁預覽下的hover特效 #7

Closed john850512 closed 4 years ago

john850512 commented 4 years ago

作者你好,首頁預覽下滑鼠移到文章內容上會字體會變成藍色,並且有超連結可以直接點進去的效果。 在你的網站中也可以看到這樣的效果。 Imgur

如果想把這個功能關掉的話(也就是滑鼠移到時字體不會變藍色也不會有進入的超連結),請問有辦法可以修改嗎?

dusign commented 4 years ago

作者你好,首頁預覽下滑鼠移到文章內容上會字體會變成藍色,並且有超連結可以直接點進去的效果。 在你的網站中也可以看到這樣的效果。 Imgur

如果想把這個功能關掉的話(也就是滑鼠移到時字體不會變藍色也不會有進入的超連結),請問有辦法可以修改嗎?

这个只能修改样式文件

john850512 commented 4 years ago

謝謝回覆,已解決,修改/snail/layout/index.ejs ,將 <div class="post-preview">後的<a href=...><\a>

註解掉即可。

      <div class="post-preview">
             /* <a href="<%- config.root %><%- post.path %>"> */
                <h2 class="post-title">
                    <img class="top_logo" src="/img/tp.png"/>
                    &nbsp;&nbsp;&nbsp;&nbsp;<%- post.title || "Untitled" %>
                </h2>
                <h3 class="post-subtitle">
                    <%- post.subtitle || "" %>
                </h3>
                <div class="post-content-preview">
                    <%- truncate(strip_html(post.content), {length: 200, omission: '...'}) %>...
                </div>
           /* </a> */