스크롤할때 스냅처리하기 예제 scroll-snap-type > IT 기술백서
스크롤할때 해당 영역에 딱 붙어부리는 효과를 css로만 구현이 가능하다. 부모영역에 scroll-snap-type 속성을, 자식영역에 scroll-snap-align, scroll-snap-stop 속성을 부여하면 된다. scroll-snap-stype: [ […]
기술백서
스크롤할때 해당 영역에 딱 붙어부리는 효과를 css로만 구현이 가능하다. 부모영역에 scroll-snap-type 속성을, 자식영역에 scroll-snap-align, scroll-snap-stop 속성을 부여하면 된다. scroll-snap-stype: [ […]
css [code] html { scroll-behavior: smooth; } @media screen and (prefers-reduced-motion: reduce) { html { scroll-behavior:
nuxt 의 기본설정대로 하면 스타일시트가 html파일내에 inline 으로 박힌다. 때문에 웹브라우저에서 보면 html 소스길이가 엄청 커진다. 이렇게 된다
1. 방화벽 서버 시작 [code] systemctl start firewalld [/code] 2. 부팅시 자동으로 시작 [code] systemctl enable firewalld [/code]
go 에는 javascript 와 같이 3dot(…) 표기법이 있다. 이는 가변인자 (갯수가 정해지지 않은 인자)를 위한 표기법이다. 함수에 parameter 로 받을때는
ClamAV 1. 페도라 패키지저장소 EPEL 설치 # yum install epel-release 2. ClamAV 설치 # yum install clamav-server clamav-data clamav-update clamav-filesystem
Go 는 상속이 없다. 대신 포함하는 것으로 상속의 효과를 누릴 수 있다. 여러개를 포함하면 다중상속과 같이 작동한다. 상속의 복잡도를 줄이기
0.25375 를 소수점 4자리로 만들어야 했다. const num = Math.round(0.25375 * 10000) / 10000 이렇게 해서 기대하는 결과는
go에서 sqlite3 를 사용하기 위해서는 go-sqlite3 패키지가 필요하다. sqlite3 가 gcc를 사용한다. Windows 환경에서 go-sqlite3 를 사용하기 위해서는 1)