2초마다 백그라운드 랜덤컬러 적용하기
See the Pen jQuery var Random Color Background by Jamie (@Halfhappy) on CodePen.
핵심소스
var randomColor = '#'+ ('000000' + Math.floor(Math.random()*16777215).toString(16)).slice(-6); $('body').css({ 'background-color' : randomColor, });
반응형
'WEB > Javascipt' 카테고리의 다른 글
[plugin]Bootstrap Notify (0) | 2019.01.15 |
---|---|
[plugin] jquery stickyjs (0) | 2018.11.20 |
[plugin][select]-jQuery Nice Select (0) | 2018.11.18 |