| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- @mixin shadow($xSize,$ySize,$size,$color){//阴影
- -moz-box-shadow: $xSize $ySize $size $color !important; /* 老的 Firefox */
- box-shadow: $xSize $ySize $size $color !important;
- }
- @mixin triangle($size,$top-color,$right-color,$bottom-color,$left-color){//三角形
- width: 0;
- height: 0;
- display: block;
- border-top: $size solid $top-color;
- border-right: $size solid $right-color;
- border-bottom: $size solid $bottom-color;
- border-left: $size solid $left-color;
- }
- @mixin translateX($size){//x轴位移
- transform:translateX($size);
- -webkit-transform:translateX($size);
- -moz-transform:translateX($size);
- -o-transform:translateX($size);
- -ms-transform:translateX($size);
- }
- @mixin translateY($size){//x轴位移
- transform:translateY($size);
- -webkit-transform:translateY($size);
- -moz-transform:translateY($size);
- -o-transform:translateY($size);
- -ms-transform:translateY($size);
- }
- @mixin translate3d($x,$y,$z){//x,y,z轴位移
- transform:translate3d($x,$y,$z);
- -webkit-transform:translate3d($x,$y,$z);
- -moz-transform:translate3d($x,$y,$z);
- -o-transform:translate3d($x,$y,$z);
- -ms-transform:translate3d($x,$y,$z);
- }
- @mixin disFlex(){
- display: -webkit-flex !important;
- display: -moz-flex !important;
- display: -ms-flex !important;
- display:flex !important;
- }
- @mixin disBox(){
- display:box !important;
- display:-webkit-box !important;
- }
- @mixin disFlex($items: center,$justify: center){//位置
- display:flex;
- display:-webkit-flex;
- align-items: $items;
- justify-content: $justify;
- }
- @mixin box-pack($align,$pack){
- display: box;
- display: -moz-box;
- display: -webkit-box;
-
- box-pack:$pack;
- -webkit-box-pack:$pack;
- box-align:$align;
- -webkit-box-align:$align;
- -moz-box-align:$align;
- }
- @mixin boxDirection(){
- -moz-box-pack:end;
- -webkit-box-pack:end;
- -o-box-pack:end;
- box-pack:end;
- }
- @mixin flex1-1(){
- box-flex: 1;
- -moz-box-flex:1;
- -webkit-box-flex: 1;
- flex: 1 !important;
- -webkit-flex:1 !important;
- }
- @mixin transition($type,$time){
- -webkit-transition: $type $time; /* Safari 和 Chrome */
- -moz-transition: $type $time; /* Firefox 4 */
- -o-transition: $type $time;
- transition: $type $time;
- }
- @mixin ransformRotate($deg){//旋转
- transform:rotate($deg);
- -ms-transform:rotate($deg); /* IE 9 */
- -moz-transform:rotate($deg); /* Firefox */
- -webkit-transform:rotate($deg); /* Safari 和 Chrome */
- -o-transform:rotate($deg); /* Opera */
- }
- @mixin radius($deg){
- border-radius: $deg;
- }
- @mixin ellipses(){
- overflow:hidden;
- text-overflow:ellipsis;
- -webkit-box-orient:vertical;
- }
- @mixin urlAbsolute(){
- position:absolute;
- top:0;
- right:0;
- bottom:0;
- left:0;
- }
- @mixin box-flex(){
- box-flex: 1;
- -webkit-box-flex: 1;
- -moz-box-flex: 1;
- -ms-box-flex: 1;
- display: block !important;
- width: 100%;
- }
- @mixin box(){
- display: -webkit-box;
- display: -moz-box;
- display: -ms-box;
- display: box;
- }
- @mixin ell(){
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- @mixin boxSizing($val){
- box-sizing: $val;
- -webkit-box-sizing: $val;
- -moz-box-sizing: $val;
- -ms-box-sizing: $val;
- }
- // 背景图片地址和大小
- @mixin bis($url) {
- background-image: url($url);
- background-repeat: no-repeat;
- background-size: 100% 100%;
- }
- @mixin borderRadius($radius) {
- -webkit-border-radius: $radius;
- -moz-border-radius: $radius;
- -ms-border-radius: $radius;
- -o-border-radius: $radius;
- border-radius: $radius;
- }
- //定位全屏
- @mixin allcover{
- position:absolute;
- top:0;
- right:0;
- }
- //定位上下左右居中
- @mixin center {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- //定位上下居中
- @mixin ct {
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- }
- //定位左右居中
- @mixin cl {
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- }
- //宽高
- @mixin wh($width, $height){
- width: $width;
- height: $height;
- }
- //字体大小、行高、字体
- @mixin font($size, $line-height, $family: 'Microsoft YaHei') {
- font: #{$size}/#{$line-height} $family;
- }
- //字体大小,颜色
- @mixin sc($size, $color){
- font-size: $size;
- color: $color;
- }
- //flex 布局和 子元素 对其方式
- @mixin fj($type: space-between){
- display: flex;
- justify-content: $type;
- }
- @mixin disFlexCen(){
- display:flex;
- display: -webkit-flex;
- display: -moz-flex;
- display: -ms-flex;
- align-items: center;
- }
|