fontello

Question mark when tapping or holding font icons

╄→гoц情女王★ 提交于 2019-12-24 23:09:49
问题 So I recently started some tinkering with my app to get it iOS 11 compatible. Thankfully most of it seems to be. However I did notice, that in my toolbar if I tap or tap and hold an icon, which is supplied by a ttf file from fontello, I get a question mark box. Example of icon: menu = [[UIBarButtonItem alloc] initWithTitle:@"\ue811" style:UIBarButtonItemStylePlain target:self action:@selector(openMenu:)]; [menu setTitleTextAttributes:@{NSFontAttributeName: [UIFont fontWithName:@"fontello"

Fontello Glyph Font odd behaviour on Firefox, shows unicode codes instead of icons

孤街浪徒 提交于 2019-12-04 09:37:45
问题 I have a webpage. In its upper right corner I have some social icons. It shows okay in Chrome (both local and on the webserver), it shows ok in local FF, but on the online page I see the square placeholders with the Unicode codes inside. Oddly enough, if i open Firebug and correct the fontello.css on the fly via Source Edit , the icons appear magically, or so it seems, and this even with trivial corrections like adding and then removing a whitespace. This is really puzzling me. Any

Fontello Glyph Font odd behaviour on Firefox, shows unicode codes instead of icons

≯℡__Kan透↙ 提交于 2019-12-03 04:28:13
I have a webpage. In its upper right corner I have some social icons. It shows okay in Chrome (both local and on the webserver), it shows ok in local FF, but on the online page I see the square placeholders with the Unicode codes inside. Oddly enough, if i open Firebug and correct the fontello.css on the fly via Source Edit , the icons appear magically, or so it seems, and this even with trivial corrections like adding and then removing a whitespace. This is really puzzling me. Any suggestions? I've managed to solve this strange issue. Turned out it was an Apache problem, got the solution from

Icon font from fontello not working with Meteor js

梦想的初衷 提交于 2019-12-02 07:09:17
问题 I have downloaded a custom icon font from fontello and intend to use it in my meteor app. I tried the demo that comes with the downloaded package and the fonts display fine. Here is my css: @font-face { font-family: 'fontello'; src: url('fonts/fontello.eot?98991264'); src: url('fonts/fontello.eot?98991264#iefix') format('embedded-opentype'), url('fonts/fontello.woff?98991264') format('woff'), url('fonts/fontello.ttf?98991264') format('truetype'), url('fonts/fontello.svg?98991264#fontello')

Icon font from fontello not working with Meteor js

邮差的信 提交于 2019-12-02 01:20:11
I have downloaded a custom icon font from fontello and intend to use it in my meteor app. I tried the demo that comes with the downloaded package and the fonts display fine. Here is my css: @font-face { font-family: 'fontello'; src: url('fonts/fontello.eot?98991264'); src: url('fonts/fontello.eot?98991264#iefix') format('embedded-opentype'), url('fonts/fontello.woff?98991264') format('woff'), url('fonts/fontello.ttf?98991264') format('truetype'), url('fonts/fontello.svg?98991264#fontello') format('svg'); font-weight: normal; font-style: normal; } [class^="icon-"]:before, [class*=" icon-"]

How do I use fontello fonts?

我只是一个虾纸丫 提交于 2019-11-29 20:08:32
According to one source, this is how I use Fontello fonts: Now it's trivial to make a custom icon webfont, exactly for your needs. First, select the icons you like. Then update glyph codes (optional), and download your webfont bundle. Fontello generates everything you need and then you upload the bundle via this module's configuration page! It's that easy! Okay. Now what? How do I invoke one of their icons on my webpage? Inside the bundle, there is "font" folder and a "css" folder. Move the font folder into your project. Your project might look something like this: /project-root --

简洁后台管理模版

倾然丶 夕夏残阳落幕 提交于 2019-11-29 03:11:19
本文转载于: 猿2048 网站 简洁后台管理模版   原文地址: 简洁后台管理模版   之前给客户开发一个简单的后台管理系统,本来准备套用AdminLTE的,但客户嫌弃太臃肿,而且又需要有多tab页面切换,于是从我代码库中找到好久前就写过的管理后台,根据需求重写。这是基于jQuery,加上自己编写基础样式,从零搭建起来的框架,在这个轻量级模版的基础上进行开发vue项目。现在顺便将这个模版搭建成我的前端demo的管理系统,而这篇文章就讲述下如何实现简单的后台管理系统。 效果请看: manage-demo:http://jeffzhong.space/sites/manage-demo/ 项目架构   基于gulp自动化工具,使用less预编译,使用swig模版引擎编译html。   基础样式base.css,字体库raleway,图标库fontello,js基础库jQuery。   同时使用webpack为vue.js配置好开发环境,在src文件夹里面可以直接开发vue项目,里面有简单的vue样例。当然想用react的也可以更改为react库。 文件目录 dist 文件生成目录 src 源文件目录,里面为vue项目的文件 img 图片文件夹 lib 类库文件夹 less less文件 pages 页面文件夹 index.html 首页(母板页) gulpfile.js webpack

How do I use fontello fonts?

无人久伴 提交于 2019-11-28 15:21:02
问题 According to one source, this is how I use Fontello fonts: Now it's trivial to make a custom icon webfont, exactly for your needs. First, select the icons you like. Then update glyph codes (optional), and download your webfont bundle. Fontello generates everything you need and then you upload the bundle via this module's configuration page! It's that easy! Okay. Now what? How do I invoke one of their icons on my webpage? 回答1: Inside the bundle, there is "font" folder and a "css" folder. Move