疫情数据分析平台工作报告【5】HTML图片嵌入

由于我们生成的图片全是html格式的独立内嵌档案,因此要想办法把html嵌入前端。

一开始考虑直接使用

HTML 元素将外部内容嵌入文档中的指定位置。此内容由外部应用程序或其他交互式内容源(如浏览器插件)提供。
但是有一个问题: 大多数现代浏览器已经弃用并取消了对浏览器插件的支持,所以如果望网站可以在普通用户的浏览器上运行,那么依靠 是不明智的。

Content categoriesFlow content, phrasing content, embedded content, interactive content, palpable content.
Permitted contentNone, it is an empty element.
Tag omissionMust have a start tag, and must not have an end tag.
Permitted parentsAny element that accepts embedded content.
Permitted ARIA rolesapplication, document, img, presentation
DOM interfaceHTMLEmbedElement (en-US)

属性

这个元素的属性包括 全局属性。

height
资源显示的高度,in CSS pixels. – (Absolute values only. NO percentages)
src
被嵌套的资源的 URL。
type
用于选择插件实例化的 MIME 类型。
width
资源显示的宽度,in CSS pixels. – (Absolute values only. NO percentages)

<embed type="video/quicktime" src="movie.mov" width="640" height="480">
HTML Living StandardLiving Standard
HTML5Recommendation

还是换用极为先进的Iframe吧。

Iframe的优点:几乎支持全部浏览器。

但是缺点也很明显:阻塞网页载入,并且和SEO冲突。

最简单的方法就是输入网址:

<!DOCTYPE html>
<html lang="en">
<head>
     <meta charset="UTF-8">
     <title>Main Page</title>
</head>
<body>
     <span>This is main page.</span>
     <iframe frameborder="0"
             noresize="noresize"
             style="position: absolute; background: transparent; width: 100%; height:100%;"
             src="https://clay-atlas.com"
             frameborder="0">
     </iframe>

</body>
</html>

然后第二种是从文件的形式嵌入。

在这里插入图片描述

要把第一个文件嵌入第二个文件。

<!DOCTYPE html>
<html lang="en">
<head>
     <meta charset="UTF-8">
     <title>Main Page</title>
</head>
<body>
     <span>This is main page.</span>
     <iframe frameborder="0"
             noresize="noresize"
             style="position: absolute; background: transparent; width: 100%; height:100%;"
             src="iframe.html"
             frameborder="0">
     </iframe>

</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
     <meta charset="UTF-8">
     <title>Main Page</title>
</head>
<body>
     <span>This is iframe page.</span>
</body>
</html>

然后让main文件中的iframe标签scr属性指向另一个文件即可。

也可以在iframe中直接输入html。将src参数改成srcdoc。

<!DOCTYPE html>
<html lang="en">
<head>
     <meta charset="UTF-8">
     <title>Main Page</title>
</head>
<body>
     <span>This is main page.</span>
             <iframe srcdoc="<div>hello</div>"</iframe>
</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值