scss 混入

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scss 混入相关的知识,希望对你有一定的参考价值。

@mixin bg-center {
	@include kp-bg-size(cover);
	background-repeat: no-repeat;
	background-position: center center;
}

@mixin v-align {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

@mixin gradient($from, $to) {
	background: $from;
	background: -moz-linear-gradient(-45deg, $from 0%, $to 100%);
	background: -webkit-linear-gradient(-45deg, $from 0%, $to 100%);
	background: linear-gradient(135deg, $from 0%, $to 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from', endColorstr='$to',GradientType=1 );
}

@mixin on-event($self: false) {
	@if $self {
		&,
		&:hover,
		&:active,
		&:focus {
			@content;
		}
	}

	@else {
		&:hover,
		&:active,
		&:focus {
			@content;
		}
	}
}

以上是关于scss 混入的主要内容,如果未能解决你的问题,请参考以下文章

scss 混入

scss 混入

scss 混入

scss 混入スニペット

scss 混入スニペット

scss 混入