Blogger Information
Blog 18
fans 0
comment 2
visits 10465
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
内联框架和视频标签
go0
Original
371 people have browsed it

内联框架iframe的使用

  1. <h2>内联框架</h2>
  2. <!-- a标签中的target属性与iframe标签的name一致 -->
  3. <a href="https://j.map.baidu.com/84/AXtc" target="map">合肥市地图</a>
  4. <iframe src="" frameborder="1" width="500" height="500" name="map"></iframe>

内联框架可以实现后台

  1. <!-- 内联框架应用(简单后台) -->
  2. <!-- 后台顶部 -->
  3. <div class="header">
  4. <h1>网站后台管理</h1>
  5. <div>
  6. <span>admin</span>
  7. <a href="logout.php">退出</a>
  8. </div>
  9. </div>
  10. <!-- 左侧导航 -->
  11. <ul class="nav">
  12. <li><a href="demo1.html" target="content">电视台1</a></li>
  13. <li><a href="demo2 biaoge.html" target="content">电视台2</a></li>
  14. <li><a href="form.html" target="content">电视台3</a></li>
  15. <li><a href="schedule.html" target="content">电视台4</a></li>
  16. </ul>
  17. <!-- 右侧内容 -->
  18. <iframe src="" frameborder="0" name="content"></iframe>

视频标签

  1. <h2>多媒体</h2>
  2. <!-- autoplay自动播放,controls添加播放、暂停等按钮,poster添加海报 -->
  3. <video
  4. src="..\images\3.mp4"
  5. width="300"
  6. controls
  7. poster="../images/pic1.jpg"
  8. ></video>
Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post