다음으로 marquee 태그를 소개하겠습니다
marquee 태그는 텍스트 스크롤을 구현하는 데 큰 기여를 합니다
일반적으로 사용되는 속성은 다음과 같습니다.
directory는 스크롤 방향을 나타냅니다(기본값은 왼쪽)
동작은 스크롤 방법을 지정합니다( 기본값은 스크롤)
Hspace 요소에서 영역까지의 수평 거리를 지정
Vspace 요소에서 영역까지의 수직 거리를 지정
loop 루프 수를 지정합니다(기본값 -1은 무한 루프를 의미)
여기는 내가 만든 작은 밤, 드셔보세요 오
<html> <head> <title> 文字轮滚</title> <meta charset="utf-8"> </head> <body> <p align=center><marquee Hspace=6 scrollamount=3 width=200 height=40 bgcolor=red scrolldelay=1 behavior="scroll" directory="right">我是Cabby****人送外号白菜姐</marquee></p> <p align=center><marquee Hspace=6 scrollamount=5 width=200 height=40 bgcolor=yellow scrolldelay=0 behavior=alternate>啦啦啦啦啦啦啦</marquee></p> <p align=center><marquee Hspace=6 scrollamount=3 width=200 height=40 bgcolor=red scrolldelay=1 behavior="scroll" directory="right" loop=-1>我是Cabby****人送外号白菜姐</marquee></p> <p align=center><marquee Hspace=6 scrollamount=5 width=200 height=40 bgcolor=yellow scrolldelay=0 behavior=alternate loop=-1>啦啦啦啦啦啦啦</marquee></p> <p align=center><marquee Hspace=6 scrollamount=3 width=200 height=40 bgcolor=red scrolldelay=1 behavior="scroll" directory="right">我是Cabby****人送外号白菜姐</marquee></p> </body> </html>
위 내용은 html5의 텍스트 스크롤을 위한 샘플 코드의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!