前端开发人员使用 HTML 图片标签来根据视口等首选项指定要在网页上显示的多个文件源。该标签允许Web开发人员在响应式网页中指定多图像源,并根据视口自动选择图像,从而使网页完美地填充源。我们可以在图片标签中指定多个来源,网页就会加载满足偏好的图片。图片标签是 HTML 5 中引入的。
语法:
HTML中的图片标签包含两种类型的标签,第一种是
<picture> <source .> . . <source .> <img . alt="HTML 图片标签" > </source></source></picture>
图片标签始终有一个结束标签,其中包含两种类型的标签,如上所述。
如前所述,图片标签包含其他两个标签
此属性与 一起使用标签。该属性允许指定要显示的图像的路径或 URL。该字段是必需的,并且每当使用源标记时都需要指定。这样我们就可以指定多个图片来源。
此属性可以与
此属性与
这样,我们就可以使用该属性和标签以及来实现响应式设计。标签。
此属性可以与
此属性与
HTML 用于为 Web 开发人员提供定义图像资源的灵活性。 以下是 HTML 图片标签的示例:
代码:
<meta name="viewport" content="width = device-width, initial-scale = 1.0"> <title> picture tag in HTML </title> <style> .results { border : green 1px solid; background-color : aliceblue; text-align : left; padding-left : 20px; height : 300px; width : 95%; } .resultText { font-size : 20px; font-style : normal; color : blue; } </style> <div class="results"> <h2> picture tag in HTML </h2> <span> Resize the browser to see the effect.. </span> <div class="resultText"> <picture> <source media="(min-width: 550px)" srcset="https://cdn.educba.com/triangle.png"> <source media="(min-width: 465px)" srcset="https://cdn.educba.com/rectangle.png"> <img src="HTML%20%E5%9B%BE%E7%89%87%E6%A0%87%E7%AD%BE.png" alt="HTML 图片标签" style="max-width:90%"> </source></source></picture> </div> </div>
输出:
这里有三张不同分辨率的图像。
在代码中,我们指定了最小宽度媒体查询来显示图像。运行代码后,尝试调整浏览器大小,会根据宽度显示不同的图片。
宽度大于 550 像素:
宽度大于 465 px:
对于其他情况,即宽度小于 465px:
Note, the outer border of the images clarifies the resolution of images. In most of the cases, all these images will be the same but with different resolutions.
Code:
<meta name="viewport" content="width = device-width, initial-scale = 1.0"> <title> picture tag in HTML </title> <style> .results { border : green 1px solid; background-color : aliceblue; text-align : left; padding-left : 20px; height : 300px; width : 95%; } .resultText { font-size : 20px; font-style : normal; color : blue; } .img { max-width: 100%; } </style> <div class="results"> <h2> picture tag in HTML </h2> <span> Resize the browser to see the effect.. </span> <div class="resultText"> <picture> <source media="(min-width: 550px)" srcset="https://cdn.educba.com/triangle.png"> <source media="(min-width: 465px)" srcset="https://cdn.educba.com/rectangle.png"> <img src="HTML%20%E5%9B%BE%E7%89%87%E6%A0%87%E7%AD%BE.png" alt="HTML 图片标签" srcset="https://cdn.educba.com/HTML 图片标签.png 2000w" sizes="900vw" style="max-width:90%"> </source></source></picture> </div> </div>
Output:
Here, we have used the attribute size with the tag. The maximum width of an image is limited by using CSS first, but these sizes attribute, along with srcset, forces to use the width depending on the size specified in terms of the viewport.
Web developers use HTML picture tag in responsive web page designing. This tag consists of two child tags source and img. Using different attributes available for these tags makes it possible to display images dynamically depending on the conditions.
以上是HTML 图片标签的详细内容。更多信息请关注PHP中文网其他相关文章!