zoukankan      html  css  js  c++  java
  • MARQUEE 滚动,垂直向下滚动,垂直向上滚动,水平滚动

    向上滚动:
    <MARQUEE   direction=up   height=110   onmouseout=start();   onmouseover=stop();  
                  scrollAmount=1   scrollDelay=0     width=300
                scrollleft= "0 "  
                scrolltop= "0 ">  要向上滚动的文字 </marquee>
    向下滚动:
    <MARQUEE   direction=down   height=110   onmouseout=start();   onmouseover=stop();  
                  scrollAmount=1   scrollDelay=0     width=300
                scrollleft= "0 "  
                scrolltop= "0 ">  要向下滚的文字 </marquee>
    向右:
    <MARQUEE   direction=right   onmouseout=start();   onmouseover=stop();  
                  scrollAmount=1   scrollDelay=0     width=300
                scrollleft= "0 "  
                scrolltop= "0 ">  要向右滚动的文字 </marquee>
    向左:
    <MARQUEE   direction=up   onmouseout=start();   onmouseover=stop();  
                  scrollAmount=1   scrollDelay=0     width=300
                scrollleft= "0 "  
                scrolltop= "0 ">  要向左滚动的文字 </marquee>

    交替滚动:
    <MARQUEE   behavior=alternate   onmouseout=start();   onmouseover=stop();  
                  scrollAmount=1   scrollDelay=0     width=300
                scrollleft= "0 "  
                scrolltop= "0 ">  要左右来回滚动的文字 </marquee>
  • 相关阅读:
    python D5
    python D4
    python D3
    python D2
    python D1
    day12——闭包,装饰器,迭代器
    day11——考试python2和python3的区别
    day10——动态参数,名称空间,global,nonlocal
    day9——函数初识
    day8——文件操作
  • 原文地址:https://www.cnblogs.com/buaaboyi/p/2006635.html
Copyright © 2011-2022 走看看