JavaScript를 사용하여 반복되지 않도록 배경 이미지의 스타일을 지정하려면 backgroundRepeat를 사용하세요. 재산. 페이지에서 배경 이미지가 반복되는지 여부를 설정할 수 있습니다.
예시
다음 코드를 실행하여 JavaScript로 배경 이미지를 반복되지 않도록 스타일 지정하는 방법을 배울 수 있습니다 -
<!DOCTYPE html> <html> <body> <button onclick="display()">Click to Set background image</button> <script> function display() { document.body.style.backgroundImage = "url('https://www.tutorialspoint.com/html5/images/html5-mini-logo.jpg')"; document.body.style.backgroundRepeat = "no-repeat"; } </script> </body> </html>