Search
 
SCRIPT & CODE EXAMPLE
 

HTML

picture tag

<picture>

<source media="(min-width: 1280px)" srcset="large.jpg">
<source media="(min-width: 640px)" srcset="medium.jpg">

<img src="small.jpg" alt="サンプル">

</picture>
Comment

picture tag

<picture>
  <source srcset="mdn-logo-wide.png" media="(min-width: 600px)">
  <img src="mdn-logo-narrow.png" alt="MDN">
</picture>
Comment

html picture tag

<picture>
  <source media="(max-width: 799px)" srcset="elva-480w-close-portrait.jpg">
  <source media="(min-width: 800px)" srcset="elva-800w.jpg">
  <img src="elva-800w.jpg" alt="Chris standing up holding his daughter Elva">
</picture>
Comment

picture tag

<picture>
  <source srcset="logo-768.png 768w, logo-768-1.5x.png 1.5x">
  <source srcset="logo-480.png, logo-480-2x.png 2x">
  <img src="logo-320.png" alt="logo">
</picture>
Comment

picture element html

<picture>
  <source type="image/webp" srcset="images/butterfly.webp">
  <img src="images/butterfly.jpg" alt="a butterfly">
</picture>
Comment

picture html tag

<!--Change the browser window width to see the image change.-->

<picture>
    <source srcset="/media/cc0-images/surfer-240-200.jpg"
            media="(min-width: 800px)">
    <img src="/media/cc0-images/painted-hand-298-332.jpg" alt="" />
</picture>
Comment

picture eleemnt in html

<picture>
  <source srcset="image.avif" type="image/avif">
  <source srcset="image.webp" type="image/webp">
  <img src="image.jpg" alt="A description of the image." 
    width="300" height="200" loading="lazy" decoding="async">
</picture>
Comment

PREVIOUS NEXT
Code Example
Html :: block view source html 
Html :: bootstrap box 
Html :: menu hamburguer html 
Html :: html default arrow remove 
Html :: fork me github code 
Html :: html interview 
Html :: netlify dev 
Html :: div html 
Html :: html <strong 
Html :: salesforce aura input checkbox 
Html :: html with lang 
Html :: to ensure user input is a link in html 
Html :: html syntax 
Html :: button 
Html :: how to choose your html website favicon 
Html :: html renderer online 
Html :: html5 time input 
Html :: html acronym 
Html :: laravel vue error handling 
Html :: HTML-Whatsapp Spammer 
Html :: include jquery if not included 
Html :: html prime number program 
Html :: html input only numbers and special characters in textbox 
Html :: twig last item 
Html :: link node module in html 
Html :: twig batch 
Html :: image background drawable android studio 
Html :: h1 alert 
Html :: web application vs website 
Html :: data tables in html 
ADD CONTENT
Topic
Content
Source link
Name
7+8 =