java框架和其他

框架

<frame></frame>:框架集

***如果使用此框架当前页面不能<body></body>标签

cols=“300,*”左右拆分,左边三百,右边剩余

rows=“300,*”上下拆分,上边高三百,下面剩余

frameborde:边框

</frame>:src:边框的页面连接,scrolling:滚动条

例如:

<frameset cols="500,*">
    <frame src="表格.html" >
    <frame src="假期作业.html" >

</iframe></iframe>:可以镶嵌在普通页面里

src:框架里显示的页面地址

width:框架的宽度

height:框架的高度

frameset:框架的边框

scrolling:滚动条

例如:

<iframe frameborder="0" scrolling="auto" src="假期作业.html" width="500" height="500"></iframe>

其他:

<marquee></marquee>:滚动效果

direction:滚动方向 up上 down下 left左 right右

例如:

<marquee direction="right"><img src="ligong.png" ></marquee>

 向右飘动

<mark></mark>:做标记

例如:

<p>呃呃呃呃呃呃呃呃呃呃呃呃呃呃呃呃呃<br>
呃呃呃呃呃呃<mark>呃呃呃呃</mark>呃呃呃呃呃呃<br>
呃呃呃呃呃呃呃呃呃呃呃呃呃呃呃呃<br>
        
</p>

 默认是黄色

<hr >:是做分割线

vedio标签:页面镶入视频

例如:

<video width="800" height="" autoplay="autoplay" loop="loop" controls="controls" muted="muted">
            <source src="视频01.mp4" type="video/mp4"></source>
            <!-- loop是循环播放
            controls添加控件
            autoplay自动播放
            muted无声自动播放 -->
        </video>

猜你喜欢

转载自www.cnblogs.com/www1842564021/p/11725371.html
今日推荐