使用 srcset 屬性指定要在 HTML 中的不同情況下使用的圖片的 URL。
您可以嘗試執行以下程式碼來實作srcset屬性。調整瀏覽器大小以查看載入的不同圖像 -
<!DOCTYPE html> <html> <head> <meta name = "viewport" content="width=device-width, initial-scale = 1.0"> </head> <body> <picture> <source media = "(min-width: 550px)" srcset = "https://www.tutorialspoint.com/assets/videotutorials/courses/3d_animation_online_training/380_course_211_image.jpg"> <source media = "(min-width: 400px)" srcset = "https://www.tutorialspoint.com/assets/videotutorials/courses/html_online_training/380_course_216_image.jpg"> <img src = "https://www.tutorialspoint.com/videotutorials/images/tutorial_library_home.jpg" alt = "Tutorials Library" style = "width:auto;"> </picture> </body> </html>
以上是如何在HTML中指定在不同情況下使用的映像的URL?的詳細內容。更多資訊請關注PHP中文網其他相關文章!