-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 마우스로 슬라이드 내부의 텍스트 선택 안 되는 것 수정 * 원인: react-slick이 각 슬라이드의 user-select를 none으로 만들었음 * 슬라이드 내부에 버튼 같은 거 있을 때 클릭 안 되는 문제 수정 * 원인: react-slick은 슬라이드들의 opacity만 바꾸는 식으로 동작하기 때문에 마우스 이벤트가 특정 슬라이드에만 계속 먹음 * 기타 * .scoped.scss 안에서 .slick-slider 등의 global class를 사용하기 위해 ::v-deep 사용 * react-scoped-css 제작자 권장은 `/deep/` 또는 `>>>`이나, 두 문법은 sass(= dart-sass)에서 지원이 안 됨 (옛날 버전인 node-sass만 지원) * Vue에서는 같은 문제를 겪고 자체적으로 ::v-deep을 추가했는데, (<vuejs/vue-cli#3399 (comment)>) react-scoped-css도 내부적으로 Vue 컴파일러를 가져다가 쓰기 때문에 이 문법이 작동함
- Loading branch information
1 parent
878f614
commit 74372f8
Showing
5 changed files
with
67 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// 마우스로 슬라이드 내부의 텍스트 선택 안 되는 것 수정. | ||
.slick-slider { | ||
user-select: auto; | ||
} | ||
|
||
// 슬라이드 내부에 버튼 같은 거 있을 때 클릭 안 되는 문제 수정. | ||
// 현재 슬라이드가 항상 가장 앞쪽에 그려지도록 함. | ||
.slick-current.slick-active { | ||
z-index: 2; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,23 @@ | ||
.mainVisualSlider { | ||
max-width: 70%; | ||
width: 100%; | ||
|
||
img { | ||
max-width: 100%; | ||
min-width: 100%; | ||
height: auto; | ||
} | ||
} | ||
|
||
.mainVisualSlider, | ||
.mainNoticeSlider { | ||
// 마우스로 슬라이드 내부의 텍스트 선택 안 되는 것 수정. | ||
::v-deep .slick-slider { | ||
user-select: auto; | ||
} | ||
|
||
// 슬라이드 내부에 버튼 같은 거 있을 때 클릭 안 되는 문제 수정. | ||
// 현재 슬라이드가 항상 가장 앞쪽에 그려지도록 함. | ||
::v-deep .slick-current.slick-active { | ||
z-index: 2; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters