-
[HTML] MarqueeVScode/HTML 2022. 9. 8. 13:28
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>11_Marquee.html</title> </head> <body> <marquee>흐르는 문자열</marquee> <marquee behavior="slide">슬라이드 문자열</marquee> <marquee behavior="alternate">좌우 이동 문자열</marquee> <marquee bgcolor="yellow" width="50%" height="150" direction="right" loop="10" scrolldelay="20">영역</marquee> <!-- bgcolor: 배경색 loop: 반복횟수 scrolldelay: 이동 속도 behavior: 스크롤 방식(slide: 한번이동 멈춤, alternate: 좌우이동반복) scroll(기본값): 단방향 이동, 같은 방향 재출현) direction: 방향(up, down, right 선택가능 안쓰면 left) --> </body> </html>
'VScode > HTML' 카테고리의 다른 글
[HTML] Table (0) 2022.09.08 [HTML] List (0) 2022.09.08 [HTML] Anchor (0) 2022.09.08 [HTML] Image (0) 2022.09.08 [HTML] 생성하기 (0) 2022.09.08