移动端通用mixins stylus版
移动端通用mixins stylus版
基础配置
$green = #02a774;
$yellow = #F5A100;
$bc = #e4e4e4;
// 一像素下边框
bottom-border-1px($color)
position relative
border none
&:after
content ''
position absolute
left 0
bottom 0
width 100%
height 1px
background-color $color
transform scaleY(0.5)
//一像素上边框
top-border-1px($color)
position
&::before
content ''
position absolute
z-index 200
left 0
top 0
width 100%
height 1px
background-color $color
//根据像素比缩放1px 像素边框
@media only screen and (-webkit-device-pixel-ratio: 2)
.border-1px
&::before
transform scaleY(.5)
@media only screen and (-webkit-device-pixel-ratio: 3)
.border-1px
&::before
transform scaleY(.333333)
//根据像素比来使用2x图 3x图
bg-image($url)
background-image: url($url + "@2x.png")
@media (-webkit-min-device-ratio: 3),(min-device-pixel-ratio: 3)
background-image: url($url + "@3x.png")
// 清除浮动
clearFix()
*zoom 1
&::after
content ''
display block
clear both 相关推荐
VLilyLUE 2020-06-11
StylusGalaxy 2020-04-29
前端工程师喻文强 2020-04-27
nicepainkiller 2020-02-23
xuelang 2020-01-16
Stylusnebula 2019-12-26
界之边缘的轮回 2019-12-11
VLilyLUE 2019-12-08
didianmanong 2019-11-17
CaiKanXP 2019-11-10
StylusGalaxy 2019-11-09
flyingbird 2019-11-08
星辰的笔记 2016-04-25
碎冰stylus融 2019-07-01
zhouyl0 2019-07-01
Stylusnebula 2019-07-01
crazestylus 2019-07-01
碎冰stylus融 2019-07-01
沉着前进 2019-06-30