2024.05.30 기록

더 이상의 지연은 없다·2024년 5월 30일
0

함수 여러방식의 문법 (function)

1 --------------------------------------

const menuTop = () => {
	window.scrollTo({ top: 0, behavior: 'smooth' });
}

2 --------------------------------------

const menuTop = function () {
	window.scrollTo({ top: 0, behavior: 'smooth' });
}

3 --------------------------------------

function menuTop() {
	window.scrollTo({ top: 0, behavior: 'smooth' });
}

css 클래스 추가 문법

<div className={bigMouse == false ? 'circle' : 'circle Big'} ></div>

1 --------------------------------------

.circle {
  width: 20px;
  height: 20px;
}
.circle.Big {
  width: 40px;
  height: 40px;
}

2 --------------------------------------

.circle {
  width: 20px;
  height: 20px;
  
	&.Big {
		width: 60px;
		height: 60px;
	}
}
profile
어제보단 나은 지연이의 오늘

0개의 댓글