[Frontend] TIL October 2nd week

hyeonze·2021년 10월 4일
0

TIL

목록 보기
16/22

Git repository

211004

홍루이젠 코딩

JQuery로 배경이미지 변경하기(이미지경로 심하게 변경됨..규칙성 나중에 찾아보자)
$(".header_inner").css({"background":"#fff url(../images/bg_gnb01.jpg) no-repeat 740px 80px"});

가상요소에 애니메이션 왜 안되는지.. -> 안하는게 좋다고함

211005

select박스 placeholder만들기
<option value="" disabled selected hidden>직접입력</option>

211006

checkbox 이미지로 설정하기
input[type=checkbox] { display:none; }
input[type=checkbox] + label { 
display: inline-block; 
cursor: pointer; 
line-height: 22px; 
padding-left: 22px; 
background: url('../images/check_off.png') left/22px no-repeat; 
}
input[type=checkbox]:checked + label { background-image: url('../images/check_on.png'); }

211006

input type:text 눌렀을때 테두리 강조되는 기능 지우는 css
outline: none;

input type:srch 우측 x표 제거하는 css(ie/크롬 순)
input::-ms-clear,
input::-ms-reveal{display:none;}
input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration{
	display:none;
}

애니메이션 최종상태로 유지하는 css
animation: forwards;
animation-fill-mode: forwards;

211007

홍루이젠 95% 완성 세부적인 이펙트 수정

211008

홍루이젠 검사완료
profile
Advanced thinking should be put into advanced code.

0개의 댓글

관련 채용 정보