yscoder / hexo-theme-indigo

一个Material Design风格的Hexo主题。 https://imys.net/    备用:
https://yscoder.github.io/
The Unlicense
2.79k stars 540 forks source link

请问下,怎么像您博客那样怎么设置默认的缩放比 #341

Open smileorigin opened 7 years ago

smileorigin commented 7 years ago

请问下,怎么像您博客那样怎么设置默认的缩放比,浏览器第一次浏览时您博客上显示的会比我直接使用的这个主题时的缩放比例小

yscoder commented 6 years ago

是否开启了浏览器的缩放?

smileorigin commented 6 years ago

浏览器一样的。打开您的博客默认看起来比较小大概是110的缩放比,打开我自己的则显得很大。我的博客:smileorigin.site

smileorigin commented 6 years ago

还有请问下使用Google分析是填入跟踪ID吗?我填入跟踪ID后还是没办法获取到浏览数据,百度的分析有数据

yscoder commented 6 years ago

在我这里显示大小是一致的。

Google分析是:UA-xxxxxxxx-x 格式

smileorigin commented 6 years ago

我填的就是那个 但是不行😂😂😂

yscoder commented 6 years ago

不要加引号,与:之间留个空格

smileorigin commented 6 years ago

没加引号,我回去再看看有哪里错了 谢啦

smileorigin commented 6 years ago

Google 分析可以用了,我重新弄了个跟踪ID,谢谢耐心回答,可以关了这个issues了

triplekiller commented 6 years ago

@SMILEORIGIN 你好,怎么样修改成你那样,footer放在侧边导航条中?谢谢

smileorigin commented 6 years ago

@triplekiller 我是把footer删了,然后再侧边栏中添加的,修改主题的里面对应的侧边栏和footer网页即可

smileorigin commented 6 years ago

@triplekiller 博客目录下:Blog\themes\indigo\layout_partial,文件夹中的:menu.ejs,footer.ejs,两个文件

triplekiller commented 6 years ago

@SMILEORIGIN css/html小白一枚,能贴个代码参考下么,谢了

smileorigin commented 6 years ago

@triplekiller 我也不懂,看了基础语法慢慢折腾的,下面是 menu.ejs的代码,主要增加了下部代码

<aside id="menu" <% if((is_post() || page.layout === 'page') && theme.hideMenu){ %>class="hide"<% } %> >
  <div class="inner flex-row-vertical">
    <a href="javascript:;" class="header-icon waves-effect waves-circle waves-light" id="menu-off">
        <i class="icon icon-lg icon-close"></i>
    </a>
    <div class="brand-wrap" style="background-image:url(<%- url_for(theme.brand) %>)">
      <div class="brand">
        <a href="<%- url_for(theme.avatar_link) %>" class="avatar waves-effect waves-circle waves-light">
          <img src="<%- url_for(theme.avatar) %>">
        </a>
        <hgroup class="introduce">
          <h5 class="nickname"><%- config.author %></h5>
          <%- mail_to(theme.email, theme.email, {class: 'mail'}) %>
        </hgroup>
      </div>
    </div>
    <div class="scroll-wrap flex-col">
      <ul class="nav">
        <%
          var menuItem, isActive = function(item) {
              var pageUrl = url_for(page.path)
              return item.url === '/' ? pageUrl === url_for(item.url + 'index.html') : _.startsWith(pageUrl, url_for(item.url))
          };
          for (var i in theme.menu) {
            menuItem = theme.menu[i];
          %>
            <li class="waves-block waves-effect<% if(isActive(menuItem)){ %> active<% } %>">
              <a href="<%- url_for(menuItem.url) %>" <% if(menuItem.target){ %>target="_blank"<% } %> >
                <i class="icon icon-lg icon-<%= i %>"></i>
                <%=(menuItem.text || _.startCase(i)) %>
              </a>
            </li>
        <% } %>
      </ul>
    </div>

    <footer class="footer">

      <div class="top">

        <p><span><%-config.author %> &copy; <%if (theme.since_year && theme.since_year < date(new Date(), 'YYYY')) {%><%- theme.since_year %> - <%}%><%- date(new Date(), 'YYYY') %></span>

    <p>
          <span>Hosted by <a href="https://pages.coding.me" style="font-weight: bold">Coding Pages</a></span>
        </p>

    <p>
          <% if(theme.ICP_license) {%>
             <a href="http://www.miitbeian.gov.cn/" target="_blank"><%- theme.ICP_license %></a><br>
          <% } %>
             Power by <a href="http://hexo.io/" target="_blank">Hexo</a> Theme <a href="https://github.com/yscoder/hexo-theme-indigo" target="_blank">indigo</a>
        </p>

      </div>

    </footer>

  </div>
</aside>
smileorigin commented 6 years ago

@triplekiller 把footer.ejs内容清空,只留下样式

<footer class="footer">

</footer>