+
IconFont 图标
+
+
+ -
+
+
刷新
+ 
+ .shuaxin
+
+
+ -
+
+
数据库
+ 
+ .shujuku
+
+
+ -
+
+
删除
+ 
+ .shanchu
+
+
+ -
+
+
文章
+ 
+ .wenzhang
+
+
+ -
+
+
链接
+ 
+ .lianjie
+
+
+ -
+
+
菜单
+ 
+ .caidan
+
+
+ -
+
+
邮件
+ 
+ .youjian
+
+
+ -
+
+
推荐
+ 
+ .tuijian
+
+
+ -
+
+
评论
+ 
+ .msg
+
+
+ -
+
+
头像
+ 
+ .userpro
+
+
+ -
+
+
类目链接
+ 
+ .leimulianjie
+
+
+ -
+
+
名单
+ 
+ .list
+
+
+ -
+
+
提醒
+ 
+ .remind
+
+
+ -
+
+
密码
+ 
+ .Password
+
+
+ -
+
+
设置
+ 
+ .Setup
+
+
+
+
+
+
+ 第一步:使用font-face声明字体
+
+@font-face {font-family: 'iconfont';
+ src: url('iconfont.eot'); /* IE9*/
+ src: url('iconfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
+ url('iconfont.woff') format('woff'), /* chrome、firefox */
+ url('iconfont.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
+ url('iconfont.svg#iconfont') format('svg'); /* iOS 4.1- */
+}
+
+第二步:定义使用iconfont的样式
+
+.iconfont{
+ font-family:"iconfont" !important;
+ font-size:16px;font-style:normal;
+ -webkit-font-smoothing: antialiased;
+ -webkit-text-stroke-width: 0.2px;
+ -moz-osx-font-smoothing: grayscale;}
+
+第三步:挑选相应图标并获取字体编码,应用于页面
+
+<i class="iconfont">3</i>
+
+
+
+
+
+
diff --git a/StudentScore/src/main/resources/public/assets/admin/fonts/demo_fontclass.html b/StudentScore/src/main/resources/public/assets/admin/fonts/demo_fontclass.html
new file mode 100644
index 0000000..c9dd597
--- /dev/null
+++ b/StudentScore/src/main/resources/public/assets/admin/fonts/demo_fontclass.html
@@ -0,0 +1,154 @@
+
+
+
+
+
+
IconFont 图标
+
+
+ -
+
+
刷新
+ .icon-shuaxin
+
+
+ -
+
+
数据库
+ .icon-shujuku
+
+
+ -
+
+
删除
+ .icon-shanchu
+
+
+ -
+
+
文章
+ .icon-wenzhang
+
+
+ -
+
+
链接
+ .icon-lianjie
+
+
+ -
+
+
菜单
+ .icon-caidan
+
+
+ -
+
+
邮件
+ .icon-youjian
+
+
+ -
+
+
推荐
+ .icon-tuijian
+
+
+ -
+
+
评论
+ .icon-msg
+
+
+ -
+
+
头像
+ .icon-userpro
+
+
+ -
+
+
类目链接
+ .icon-leimulianjie
+
+
+ -
+
+
名单
+ .icon-list
+
+
+ -
+
+
提醒
+ .icon-remind
+
+
+ -
+
+
密码
+ .icon-Password
+
+
+ -
+
+
设置
+ .icon-Setup
+
+
+ -
+
+
上升
+ .icon-shangsheng
+
+
+ -
+
+
发件箱
+ .icon-fajianxiang
+
+
+ -
+
+
上升
+ .icon-xiajiang
+
+
+ -
+
+
排序
+ .icon-paixu
+
+
+
+
+
font-class引用
+
+
+
font-class是unicode使用方式的一种变种,主要是解决unicode书写不直观,语意不明确的问题。
+
与unicode使用方式相比,具有如下特点:
+
+ - 兼容性良好,支持ie8+,及所有现代浏览器。
+ - 相比于unicode语意明确,书写更直观。可以很容易分辨这个icon是什么。
+ - 因为使用class来定义图标,所以当要替换图标时,只需要修改class里面的unicode引用。
+ - 不过因为本质上还是使用的字体,所以多色图标还是不支持的。
+
+
使用步骤如下:
+
第一步:引入项目下面生成的fontclass代码:
+
+
+
+
第二步:挑选相应图标并获取类名,应用于页面:
+
<i class="iconfont icon-xxx"></i>
+
+ "iconfont"是你项目下的font-family。可以通过编辑项目查看,默认是"iconfont"。
+
+
+
+
diff --git a/StudentScore/src/main/resources/public/assets/admin/fonts/demo_symbol.html b/StudentScore/src/main/resources/public/assets/admin/fonts/demo_symbol.html
new file mode 100644
index 0000000..fb289e7
--- /dev/null
+++ b/StudentScore/src/main/resources/public/assets/admin/fonts/demo_symbol.html
@@ -0,0 +1,215 @@
+
+
+
+
+
+
IconFont 图标
+
+
+ -
+
+
刷新
+ #icon-shuaxin
+
+
+ -
+
+
数据库
+ #icon-shujuku
+
+
+ -
+
+
删除
+ #icon-shanchu
+
+
+ -
+
+
文章
+ #icon-wenzhang
+
+
+ -
+
+
链接
+ #icon-lianjie
+
+
+ -
+
+
菜单
+ #icon-caidan
+
+
+ -
+
+
邮件
+ #icon-youjian
+
+
+ -
+
+
推荐
+ #icon-tuijian
+
+
+ -
+
+
评论
+ #icon-msg
+
+
+ -
+
+
头像
+ #icon-userpro
+
+
+ -
+
+
类目链接
+ #icon-leimulianjie
+
+
+ -
+
+
名单
+ #icon-list
+
+
+ -
+
+
提醒
+ #icon-remind
+
+
+ -
+
+
密码
+ #icon-Password
+
+
+ -
+
+
设置
+ #icon-Setup
+
+
+ -
+
+
上升
+ #icon-shangsheng
+
+
+ -
+
+
发件箱
+ #icon-fajianxiang
+
+
+ -
+
+
上升
+ #icon-xiajiang
+
+
+ -
+
+
排序
+ #icon-paixu
+
+
+
+
+
+
symbol引用
+
+
+
这是一种全新的使用方式,应该说这才是未来的主流,也是平台目前推荐的用法。相关介绍可以参考这篇文章
+ 这种用法其实是做了一个svg的集合,与另外两种相比具有如下特点:
+
+ - 支持多色图标了,不再受单色限制。
+ - 通过一些技巧,支持像字体那样,通过
font-size
,color
来调整样式。
+ - 兼容性较差,支持 ie9+,及现代浏览器。
+ - 浏览器渲染svg的性能一般,还不如png。
+
+
使用步骤如下:
+
第一步:引入项目下面生成的symbol代码:
+
+
第二步:加入通用css代码(引入一次就行):
+
<style type="text/css">
+.icon {
+ width: 1em; height: 1em;
+ vertical-align: -0.15em;
+ fill: currentColor;
+ overflow: hidden;
+}
+</style>
+
第三步:挑选相应图标并获取类名,应用于页面:
+
<svg class="icon" aria-hidden="true">
+ <use xlink:href="#icon-xxx"></use>
+</svg>
+
+
+
+
diff --git a/StudentScore/src/main/resources/public/assets/admin/fonts/demo_unicode.html b/StudentScore/src/main/resources/public/assets/admin/fonts/demo_unicode.html
new file mode 100644
index 0000000..72cdc78
--- /dev/null
+++ b/StudentScore/src/main/resources/public/assets/admin/fonts/demo_unicode.html
@@ -0,0 +1,192 @@
+
+
+
+
+
+
IconFont 图标
+
+
+ -
+
+
刷新
+ 
+
+
+ -
+
+
数据库
+ 
+
+
+ -
+
+
删除
+ 
+
+
+ -
+
+
文章
+ 
+
+
+ -
+
+
链接
+ 
+
+
+ -
+
+
菜单
+ 
+
+
+ -
+
+
邮件
+ 
+
+
+ -
+
+
推荐
+ 
+
+
+ -
+
+
评论
+ 
+
+
+ -
+
+
头像
+ 
+
+
+ -
+
+
类目链接
+ 
+
+
+ -
+
+
名单
+ 
+
+
+ -
+
+
提醒
+ 
+
+
+ -
+
+
密码
+ 
+
+
+ -
+
+
设置
+ 
+
+
+ -
+
+
上升
+ 
+
+
+ -
+
+
发件箱
+ 
+
+
+ -
+
+
上升
+ 
+
+
+ -
+
+
排序
+ 
+
+
+
+
unicode引用
+
+
+
unicode是字体在网页端最原始的应用方式,特点是:
+
+ - 兼容性最好,支持ie6+,及所有现代浏览器。
+ - 支持按字体的方式去动态调整图标大小,颜色等等。
+ - 但是因为是字体,所以不支持多色。只能使用平台里单色的图标,就算项目里有多色图标也会自动去色。
+
+
+ 注意:新版iconfont支持多色图标,这些多色图标在unicode模式下将不能使用,如果有需求建议使用symbol的引用方式
+
+
unicode使用步骤如下:
+
第一步:拷贝项目下面生成的font-face
+
@font-face {
+ font-family: 'iconfont';
+ src: url('iconfont.eot');
+ src: url('iconfont.eot?#iefix') format('embedded-opentype'),
+ url('iconfont.woff') format('woff'),
+ url('iconfont.ttf') format('truetype'),
+ url('iconfont.svg#iconfont') format('svg');
+}
+
+
第二步:定义使用iconfont的样式
+
.iconfont{
+ font-family:"iconfont" !important;
+ font-size:16px;font-style:normal;
+ -webkit-font-smoothing: antialiased;
+ -webkit-text-stroke-width: 0.2px;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+
第三步:挑选相应图标并获取字体编码,应用于页面
+
<i class="iconfont">3</i>
+
+
+ "iconfont"是你项目下的font-family。可以通过编辑项目查看,默认是"iconfont"。
+
+
+
+
+
+
diff --git a/StudentScore/src/main/resources/public/assets/admin/fonts/iconfont.css b/StudentScore/src/main/resources/public/assets/admin/fonts/iconfont.css
new file mode 100644
index 0000000..baf14ac
--- /dev/null
+++ b/StudentScore/src/main/resources/public/assets/admin/fonts/iconfont.css
@@ -0,0 +1,55 @@
+
+@font-face {font-family: "iconfont";
+ src: url('iconfont.eot?t=1490337422326'); /* IE9*/
+ src: url('iconfont.eot?t=1490337422326#iefix') format('embedded-opentype'), /* IE6-IE8 */
+ url('iconfont.woff?t=1490337422326') format('woff'), /* chrome, firefox */
+ url('iconfont.ttf?t=1490337422326') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
+ url('iconfont.svg?t=1490337422326#iconfont') format('svg'); /* iOS 4.1- */
+}
+
+.iconfont {
+ font-family:"iconfont" !important;
+ font-size:16px;
+ font-style:normal;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.icon-shuaxin:before { content: "\e60d"; }
+
+.icon-shujuku:before { content: "\e600"; }
+
+.icon-shanchu:before { content: "\e601"; }
+
+.icon-wenzhang:before { content: "\e602"; }
+
+.icon-lianjie:before { content: "\e60c"; }
+
+.icon-caidan:before { content: "\e60e"; }
+
+.icon-youjian:before { content: "\e603"; }
+
+.icon-tuijian:before { content: "\e604"; }
+
+.icon-msg:before { content: "\e605"; }
+
+.icon-userpro:before { content: "\e606"; }
+
+.icon-leimulianjie:before { content: "\e607"; }
+
+.icon-list:before { content: "\e608"; }
+
+.icon-remind:before { content: "\e609"; }
+
+.icon-Password:before { content: "\e60a"; }
+
+.icon-Setup:before { content: "\e60b"; }
+
+.icon-shangsheng:before { content: "\e628"; }
+
+.icon-fajianxiang:before { content: "\e639"; }
+
+.icon-xiajiang:before { content: "\e60f"; }
+
+.icon-paixu:before { content: "\e656"; }
+
diff --git a/StudentScore/src/main/resources/public/assets/admin/fonts/iconfont.eot b/StudentScore/src/main/resources/public/assets/admin/fonts/iconfont.eot
new file mode 100644
index 0000000..274971e
Binary files /dev/null and b/StudentScore/src/main/resources/public/assets/admin/fonts/iconfont.eot differ
diff --git a/StudentScore/src/main/resources/public/assets/admin/fonts/iconfont.js b/StudentScore/src/main/resources/public/assets/admin/fonts/iconfont.js
new file mode 100644
index 0000000..029dc66
--- /dev/null
+++ b/StudentScore/src/main/resources/public/assets/admin/fonts/iconfont.js
@@ -0,0 +1,252 @@
+;(function(window) {
+
+ var svgSprite = '