liuzhengyuan 发表于 2020-1-16 20:15:20

【web学习笔记】029-小姐姐,我住在这个城市

本帖最后由 liuzhengyuan 于 2020-1-22 14:28 编辑

《零基础入门学习web开发》第29讲 小姐姐,我住在这个城市 | 学习笔记

使用 iframe 嵌入网站
meter定义一个范围内的测量值/分数值
progress进度条
· 程序:
<!DOCTYPE html>
<html>
<head>
        <title>029lesson</title>
</head>
<body>
        <p>嵌入百度官网<a href="https://www.baidu.com" target="_blank">(www.baidu.com)</a></p>
        <iframe src="https://www.baidu.com" width="1024px" height="400px">您的浏览器太low了,不支持啊。</iframe>
        <br><meter high="0.9" low="0.5" optimun="0.85" value="0.7" max="1" min="0"></meter>
        <br><progress max="1" value="0.7" ></progress>
</body>
</html>
· 运行效果:

{:10_257:}
页: [1]
查看完整版本: 【web学习笔记】029-小姐姐,我住在这个城市