zoukankan      html  css  js  c++  java
  • 初学HTML-10

    marquee标签:设置文字滚动效果。

          格式:<marquee>文字滚动</marquee>

          属性:direction:设置滚动方向:left / right / up / dowm

                <marquee direction="right">文字滚动</marquee>

             scrollamount:设置滚动速度,值越大越快。

                <marquee scrollamount="1">文字滚动</marquee>

             loop:设置滚动次数,默认是 -1,也就是无限次滚动。

                <marquee loop="1">文字滚动</marquee>

             behavior:设置滚动类型。

                  slide滚动到边界就停止,alternate滚动到边界就弹回。

                 <marquee behavior="slide">文字滚动</marquee>

           设置图片滚动:<marquee>

                    <img src="image/nj.jpg" width="50px">

                  </marquee>

    一些字符:空格:&nbsp;

         小于符号:&lt; (less than)

         大于符号:&gt;  (greater than)

         版权符号:&copy;

             

  • 相关阅读:
    基于spark-streaming实时推荐系统
    xgb
    FM算法解析及Python实现
    FM算法
    计算广告
    转发推荐系统文章
    【spark】dataframe常见操作
    VS Code WSL 2 配置 Spring Boot 2
    Makefile
    Paper English
  • 原文地址:https://www.cnblogs.com/olive2014/p/10287792.html
Copyright © 2011-2022 走看看