-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfunction.scss
158 lines (147 loc) · 3.39 KB
/
function.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
// ===== 텍스트 세로 중앙 정렬 2가지 방법 =====
// @방법1 : 부모에게 mixin 주고 인자로 클래스명 넘기기
// 장 : 알아보기가 편함?
// 단 : 클래스 명을 넘길때 긴 클래스일 경우 불편함
// component 명 전역화 해서 그걸 사용
$component-name : '.simple' !global;
@mixin vertical-center($classname...) {
letter-spacing:-10px;
&:before {
display: inline-block;
vertical-align: middle;
height: 100%;
content:'';
}
#{$classname} {
display: inline-block;
vertical-align: middle;
letter-spacing:0;
}
}
// *---예제
.a {
// 전역변수를 좀더 간략하게 하기 위해 지역으로 사용
$child : $component-name;
@include vertical-center($child+'__a',$child+'__a','.a__c','.d');
}
// @2방법 : 부모와 자신에게 각각 주기 (parent와 child약자)
// 장 : include 부여가 자유로움
// 단 : 알아보기는 불편
@mixin vertical-center-pa {
letter-spacing:-10px;
&:before {
display: inline-block;
vertical-align: middle;
height: 100%;
content:'';
}
}
@mixin vertical-center-ch {
display:inline-block;
vertical-align:middle;
letter-spacing:0;
}
// *---예제
.a1{
@include vertical-center-pa();
}
.b1, .c1{
@include vertical-center-ch();
}
// ===== rtl 만들기 =====
//인자에 순서를 맞춰야 한다? 스프레트 오퍼레이터를 가장 마지막으로
@mixin reverse-dir($box, $type:'pc', $num...){
}
// *---예제
.padding {
// @include reverse-dir-pc(padding, 2 5 3 7)
}
// ===== label list =====
// @label로 만드는 list. 갯수, ul의 마진, li의 padding
@mixin ul-box($values...){
@each $var in $values {
margin:#{$var};
}
}
@mixin label-list($count, $ul-box, $li-box){
$width:();
@if $count == '2' {
$width : 50;
}
@else if $count == '3' {
$width : 33.3;
}
@else if $count == '4' {
$width : 25;
}
// @each $value in $ul-box {
// #{$property}: $px;
// $pc: append
// }
ul {
// margin: #{$ul-box};
}
@include ul-box(#{$ul-box});
// @each $value in $ul-box {
// ul {
// margin: #{$value};
// }
// }
li {
width: $width#{'%'};
padding: index($li-box, 3)#{'px'};
box-sizing: border-box;
}
}
// *---예제
.label-list{
@include label-list('2', 0 -2,'0 3');
}
// 기타
@mixin post-link ($class, $color, $hover) {
a#{$class} {
color: $color;
}
a#{$class}:hover {
color: $hover;
}
}
.link {
@include post-link('.link-a',red,blue);
}
@mixin after-bg($width, $height, $url, $type : 'pc') {
@if($type == 'pc'){
width : $width+px;
height: $height+px;
}
@else if($type == 'mo'){
width : $width+px;
height: $height+px;
}
@else {
@warn "type is 'pc' or 'mo'";
}
background: url($url) no-repeat center;
background-size: 100% auto;
}
// ==== 퍼센트 계산기 ====
// @퍼센트니 당연히 인자는 숫자만 들어간다는 가정하에.
@function percent-width($full-width, $content-width, $digit : 2) {
$decimal-point: 100;
@if($digit == 0){
$percent : 1;
}
@else if($digit == 1){
$percent : 10;
}
@else if($digit == 2){
$percent : 100;
}
@else if($digit == 3){
$percent: 1000;
}
@else {
@warn "Decimal places are supported from 1 to 3";
}
@return round((($content-width/$full-width)*100%)*$decimal-point)/$decimal-point;
}