特殊標籤marquee標籤
阿新 • • 發佈:2018-12-31
marquee標籤
<!--
marquee標籤,跑馬燈
1,格式
<marquee>內容</marquee>
2,注意點:
marquee不是w3c推薦的標籤,在w3c官網上找不到這個標籤,但是在各大瀏覽器上使用很多
-->
<!-- 預設是從左向右-->
<marquee direction="">我是前端開發</marquee>
<hr>
<!-- 從左向右 direction="right" -->
<marquee direction ="right">我是前端開發</marquee>
<hr>
<!-- 從右向左 direction="left" -->
<marquee direction="left">我是前端開發</marquee>
<hr>
<!-- 從下向上 direction="up" -->
<marquee direction="up">我是前端開發</marquee>
<hr>
<!-- 從上向下 direction="down" -->
<marquee direction ="down">我是前端開發</marquee>
<hr>
<!-- 設定滾動速度 scrollamount="50" -->
<marquee behavior="" direction="left" scrollamount="50">我是前端開發</marquee>
<hr>
<!-- 設定滾動重複次數 loop="1"-->
<marquee direction="right" scrollamount="50" loop="1">我是前端開發</marquee>
<hr>
<!--
設定滾動的型別:
1,behavior="slide" ,滾動到邊界就停止
2,behavior="alternate",滾動到邊界就彈回
-->
<marquee behavior="slide" direction="left" scrollamount="50">我是前端開發</marquee>
<hr>
<!-- 圖片滾動 -->
<marquee scrollamount="50">
<img src="images/image.png" width="200">
</marquee>