首页 > Web开发 > 详细

解决openstack 的 dashboard 使用了google 字体, 导致网站访问速度慢

时间:2015-02-06 07:09:39      阅读:3029      评论:0      收藏:0      [点我收藏+]

openstack 的 dashboard 使用了google 字体, 导致网站访问速度慢

解决方案有几种:

  1. 去掉google字体,直接删除google字体

  2. 使用local字体替代

  3. 使用360字体替代

字体使用代码在css中,以ubuntu为例:

/usr/share/openstack-dashboard/static/dashboard/css/7ac7b118466e.css

@font-face {

  font-family: ‘Ubuntu‘;

  font-style: normal;

  font-weight: 300;

  src: url(‘http://themes.googleusercontent.com/static/fonts/ubuntu/v5/e7URzK__gdJcp1hLJYAEag.woff‘) format(‘woff‘); }


/usr/share/openstack-dashboard-ubuntu-theme/static/ubuntu/css/ubuntu.scss

@font-face {

  font-family: ‘Ubuntu‘;

  font-style: normal;

  font-weight: 300;

  src: local(‘Ubuntu‘),url(‘http://themes.googleusercontent.com/static/fonts/ubuntu/v5/e7URzK__gdJcp1hLJYAEag.woff‘) format(‘woff‘);

}


解决openstack 的 dashboard 使用了google 字体, 导致网站访问速度慢

原文:http://hinetwork.blog.51cto.com/9860975/1612104

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!