작성
·
470
1
취향상 수업내용과 반대로 해보았는데 li에 전부 흑백을 주면 프레임이 느려지네요,, 왜이런 현상이 생길까요
그리고 크로스브라우징을 고려해서 filter 속성을 거의 사용하지 않는다 하셨는데 그럼 필터효과를 주려면 주로 어떤 다른속성을 사용해야하나요??
아래에 중복된 코드이미지가 안사라지네요ㅜ 위에꺼만 봐주세요
.gallery{
display: flex;
height: 100vh;
}
.gallery li{
border-right: 5px solid black;
flex: 1;
transition: 0.5s;
filter: grayscale(1);
}
.gallery li:last-child{
border-right: none;
}
.gallery li:nth-child(1){
background: url(../images/artistic-image-01.jpg)
no-repeat center center;
}
.gallery li:nth-child(2){
background: url(../images/artistic-image-02.jpg)
no-repeat center center;
}
.gallery li:nth-child(3){
background: url(../images/artistic-image-03.jpg)
no-repeat center center;
}
.gallery li:nth-child(4){
background: url(../images/artistic-image-04.jpg)
no-repeat center center;
}
.gallery li:nth-child(5){
background: url(../images/artistic-image-05.jpg)
no-repeat center center;
}
.gallery li:hover{
flex: 3;
filter: grayscale(0);
}
/* Google Web Font */
@import url('https://fonts.googleapis.com/css?family=Raleway&display=swap');
/* Fontawesome 4.7 */
@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
body{
line-height: 1.5em;
font-family: 'Arial';
font-weight: 500;
margin: 0;
padding: 0;
font-family: 'Raleway', sans-serif;
}
ul,
li{
padding: 0;
margin: 0;
list-style: none;
}
a{
text-decoration: none;
color: inherit;
}
.gallery{
display: flex;
height: 100vh;
}
.gallery li{
border-right: 5px solid black;
flex: 1;
transition: 0.5s;
filter: grayscale(1);
}
.gallery li:last-child{
border-right: none;
}
.gallery li:nth-child(1){
background: url(../images/artistic-image-01.jpg)
no-repeat center center;
}
.gallery li:nth-child(2){
background: url(../images/artistic-image-02.jpg)
no-repeat center center;
}
.gallery li:nth-child(3){
background: url(../images/artistic-image-03.jpg)
no-repeat center center;
}
.gallery li:nth-child(4){
background: url(../images/artistic-image-04.jpg)
no-repeat center center;
}
.gallery li:nth-child(5){
background: url(../images/artistic-image-05.jpg)
no-repeat center center;
}
.gallery li:hover{
flex: 3;
filter: grayscale(0);
}
답변 1
1
프레임이 느려질 정도까지는 아닐텐데.. 컴퓨터 사양이 좀 낮으면 그럴수도 있을 것 같아요.
코드 상에 문제는 전혀 보이지 않습니다.
이 예제는 제가 학원에서도 수업하는 예제인데 프레임이 느려지는 정도를 느껴본 적은 없습니다.
IE에서 필터속성을 사용해 보려고 한적이 없어서 고민해본 적이 없었는데 검색해보니.. 역시나 매우 가성비가 안나오게 복잡하네요.
아래 주소에 있는걸 참고하시면 될 듯 합니다. 저는 해보지는 않았습니다.