@font-face{font-family:'fzltxhk';src:url('fzltxhk.ttf')format('truetype')}案例
分类:
Web程序 时间:
2015-04-27 12:37:03
阅读次数:
195
再也不会有草根第一次创业就成功的故事了 有赞是我的第三次创业经历。第一次创业是跟我的大学学生会主席,当时想做一个个人的空间,让每个个人空间可以连起来,那会儿不知道就是 Face book 的概念。当时做了三个月后资金链断了,我们几个人一共就筹了几十万现金,也没有融资渠道。那个时候我们犯了很严重的几....
分类:
其他好文 时间:
2015-04-26 22:35:20
阅读次数:
166
We have a machine for painting cubes. It is supplied with three different colors: blue, red and green. Each face of the cube gets one of these colors....
分类:
其他好文 时间:
2015-04-26 15:04:55
阅读次数:
142
Abstract. OpenCASCADE provides a class BRepBuilderAPI_MakeFace to build topological faces. A face maybe built from a surface, elementary surface from ...
分类:
其他好文 时间:
2015-04-25 13:26:05
阅读次数:
228
Problem Description
You have a dice with m faces, each face contains a distinct number. We assume when we tossing the dice, each face will occur randomly and uniformly. Now you have T query to answer...
分类:
其他好文 时间:
2015-04-24 09:14:08
阅读次数:
131
——IE11、Chrome、Firefox、Safari、Opera支持ttf字体。IE6不支持ttf,但支持eot字体。
——如果写成如下样式,不行。后面的会覆盖前面的,即最后一个url引入的字体生效,所以如果想要做兼容,可能需要用if lt IE8做判断。...
分类:
其他好文 时间:
2015-04-23 21:50:43
阅读次数:
131
@font-face{
font-family:‘emotion‘;
src:url(‘emotion.eot‘);/*IE9*/
src:url(‘emotion.eot?#iefix‘)format(‘embedded-opentype‘),/*IE6-IE8*/
url(‘emotion.woff‘)format(‘woff‘),/*chrome、firefox*/
url(‘emotion.ttf‘)format(‘truetype‘),/*chrome、firefox、opera、Safar..
分类:
Web程序 时间:
2015-04-21 18:36:57
阅读次数:
173
@font-face指令在CSS2中引入,但是在HTMl5中实现的. Web开放字体(WOFF)也是被所有浏览器支持的字体 大多数的字体是TrueType(TTF)和OpenType(PTF)而IE实现的是Embedded OpenType(EOT),还有一种可伸缩矢量图形(SVG)这种类型只被IO...
分类:
Web程序 时间:
2015-04-21 17:28:08
阅读次数:
144
雨忆博客中提到了sfntly(具体介绍可以看:https://code.google.com/p/sfntly/),利用其中sfnttool.jar就可以提取只包含指定字符的字体,如果想在页面中通过@font-face嵌入中文字体的话是一个不错的选择。sfnttool.jar的选项如下:java -...
分类:
编程语言 时间:
2015-04-21 12:45:30
阅读次数:
2068
读入图片,算法检测,画出矩形框import cv2from PIL import Image,ImageDraw import os def detectFaces(image_name): img = cv2.imread(image_name) face_cascade = cv2....
分类:
其他好文 时间:
2015-04-19 22:40:51
阅读次数:
331