视频元素与Iframe
视频元素
- video
- controls:控制按钮
- autoplay:自动播放
- muted:静音
- loop:循环播放
- poster:海报/封面
- audio
iframe框架
- 绑定a.target <==> iframe.name 可以实现导航的功能
- 可以用 a + iframe 实现后台功能
代码实例
<figure>
<!--
绑定a.target <==> iframe.name
可以用 a + iframe 实现后台功能
-->
<figcaption>
<a href="https://j.map.baidu.com/04/Alqu" target="city">银川市</a>
<a href="https://j.map.baidu.com/79/f" target="city">北京市</a>
<a href="https://j.map.baidu.com/a8/5" target="city">上海市</a>
</figcaption>
<iframe srcdoc="<p style='color:red'>城市地图显示在这里</p>" name="city" width="500" height="500" frameborder="0"></iframe>
</figure>
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!