遇到特殊字体,在网站用得比较多比如0…1000等排序是特殊字体,还有各种动态字体。
这时候可以找美工要个字体SFNT格式的就行。
然后在用css的font-face引入
1
2
3
4
5
6
7
8@font-face {
font-family: 'qingchun';
src: url('../data/qingchun-s.eot');
src: url('../data/qingchun-s.eot?#iefix') format('embedded-opentype'),
url('../data/qingchun-s.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
发布第一个开源 JavaScript Library
Create First Open Source JavaScript Library
following by How to Write an Open Source JavaScript Library
influxdb non_negative_derivative
搭建企业私有registry实践(一)
网上找到的三种搭建搭建企业私有registry方式
一、CouchDB+ npm-registry-couchapp+ kappa(官网提供的方法https://docs.npmjs.com/misc/registry)
https://github.com/npm/npm-registry-couchapp
但是npm-registry-couchapp说不会接受任何pull请求,也不会对此代码库进行任何更改。
相关的实现与资料有
http://ju.outofmemory.cn/entry/108287