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 and img tag

<img srcset="image-400.jpg 400w,
             image-800.jpg 800w,
             image-1600.jpg 1600w"
     sizes="(min-width: 1280px) 600px,
            (min-width: 768px) 500px,
            100vw"
     src="image-800.jpg"
     alt="Munster Dom">
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

PREVIOUS NEXT
Code Example
Html :: font color html 
Html :: bootstrap 5 font color 
Html :: clipboarddata.getdata html 
Html :: html marquee tag 
Html :: SVG <line 
Html :: audio html tag 
Html :: Simple example of using external file javascript in html 
Html :: double underline in html 
Html :: link to parent folder html 
Html :: name input html 
Html :: bootstrap 5 cdn 
Html :: how do you add an image in html 
Html :: Hide table column using JavaScript 
Html :: what is markup in html 
Html :: subscript html 
Html :: vs code basic html template shortcut 
Html :: viewport 
Html :: react render html 
Html :: create ion card 
Html :: html button click go to section 
Html :: boostrap base theme 
Html :: mat-toolbar 
Html :: carousel html example 
Html :: how do you make a link to the top of a page 
Html :: html div specific size 
Html :: bootstrap table 
Html :: html timed hide 
Html :: line under text html 
Html :: what is <tr in HTML 
Html :: background color change 
ADD CONTENT
Topic
Content
Source link
Name
7+9 =