Posted 2017-04-28Note自定义字体 @font-face@font-face { font-family: 'MyWebFont'; src: url('webfont.eot'); /* IE9 Compat Modes */ src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('webfont.woff2') format('woff2'), /* Super Modern Browsers */ url('webfont.woff') format('woff'), /* Pretty Modern Browsers */ url('webfont.ttf') format('truetype'), /* Safari, Android, iOS */ url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */}body { font-family: 'MyWebFont', Fallback, sans-serif;}Read more
Posted 2016-12-06Notesass - Retinal屏border显示1px@mixin border($top, $right, $bottom, $left, $color:#f00) { content: " "; position: absolute; top: $top; right: $right; bottom: $bottom; left: $left; color: $color; $position: ''; $transform-origin: ''; $scale: ''; @if $top == 'auto' or $bottom == 'auto' { height: 1px; $scale: 1, .5; } @else if $left == 'auto' or $right == 'auto' { width: 1px; $scale: .5, 1; } @if $top == 'auto' { $position: bottom; $transform-origin: 0 100%; } @else if $right == 'auto' { $position: left; $transform-origin: 0 0; } @else if $bottom == 'auto' { $position: top; $transform-origin: 0 0; } @else if $left == 'auto' { $position: right; $transform-origin: 100% 0; } border-#{$position} : 1px solid $color; -webkit-transform-origin: $transform-origin; transform-origin: $transform-origin; -webkit-transform: scale($scale); transform: scale($scale); z-index: 1;}.demo { position: relative; &:before { @include border(0, 0, auto, 0, #666); // top, right, bottom, left, color }}
Posted 2016-08-16ManualSASS用法指南一、什么是SASSSASS是一种CSS的开发工具,提供了许多便利的写法,大大节省了设计者的时间,使得CSS的开发,变得简单和可维护。 二、安装和使用2.1 安装 SASS是Ruby语言写的,但是两者的语法没有关系。不懂Ruby,照样使用。只是必须先安装Ruby,然后再安装SASS。 假定你已经安装好了Ruby,接着在命令行输入下面的命令: gem install sass 然后,就可以使用了。Read more