//边框
@mixin yjbk ($num) {
-moz-border-radius: $num;
-webkit-border-radius: $num;
border-radius: $num;
}
//转块元素
@mixin block ($width, $height) {
width: $width;
height: $height;
display: block;
}
//转行内块元素
@mixin inline-block ($width, $height) {
width: $width;
height: $height;
display: inline-block;
}
//屏幕中居中
@mixin pm-center {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
//文本省略
@mixin ellipsis($rowCount: 1) {
@if $rowCount <=1 {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
} @else {
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: $rowCount;
-webkit-box-orient: vertical;
}
}
//三角形()
@mixin sanjiaoxing($size: 5px, $color: rgba(0, 0, 0, 0.6), $dir: bottom) {
width: 0;
height: 0;
border-style: solid;
@if (bottom==$dir) {
border-width: $size $size 0 $size;
border-color: $color transparent transparent transparent;
} @else if (top==$dir) {
border-width: 0 $size $size $size;
border-color: transparent transparent $color transparent;
} @else if (right==$dir) {
border-width: $size 0 $size $size;
border-color: transparent transparent transparent $color;
} @else if (left==$dir) {
border-width: $size $size $size 0;
border-color: transparent $color transparent transparent;
}
}
//元素定位
@mixin postion ($type, $top, $right, $bottom, $left) {
position: $type;
top: $top;
bottom: $bottom;
left: $left;
right: $right;
& > #{$type} {
color: #f00;
}
}
// 隔行换色
@mixin ghhs($evenColor, $evenBgColor, $oddColor, $oddBgColor) {
&:nth-child(2n) {
color: $evenColor;
background-color: $evenBgColor;
}
&:nth-child(2n + 1) {
color: $oddColor;
background-color: $oddBgColor;
}
}
// 禁止文本被选择
@mixin user-select {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
//修改input placeholder颜色
@mixin placeholderColor($color: #fff) {
&::-webkit-input-placeholder {
color: $color;
}
&::-moz-placeholder {
/* Mozilla Firefox 19+ */
color: $color;
}
&:-moz-placeholder {
/* Mozilla Firefox 4 to 18 */
color: $color;
}
&:-ms-input-placeholder {
/* Internet Explorer 10-11 */
color: $color;
}
}
//元素初始化
@mixin elinit ($w: auto,$h: auto,$c: #fff) {
width: $w;
height: $h;
background: $c;
}
//元素居中
@mixin content ($w,$h) {
position: absolute;
width: $w;
height: $h;
top: 50%;
left: 50%;
margin-top: -$h / 2;
margin-left: -$w / 2;
}
//阴影
@mixin boxshadow ($x) {
box-shadow: $x;
}
作者:王三岁805
链接:https://juejin.cn/post/7018003395713695780
来源:稀土掘金
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
常用scss设置
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- vue项目安装scss 新建vue 项目 vue init webpack myname 1、cnpm insta...
- Vue项目中使用scss,如果写了一套完整的有变量的scss文件,全局引入供每个组件(页面)使用。可以在mian....
- react 默认支持sass 因为sass比less强大 支持全局函数 1.安装 sass-resources-l...
- 1、项目中设置lang=“scss”,运行项目报错: Cannot find module'node-sass' ...