Forked from bjankord/dry-picture-element-media-queries
Created
April 4, 2017 20:56
-
-
Save che-wf/bfb943c9a328ac06c4c46a80398c1527 to your computer and use it in GitHub Desktop.
DRY Picture element media queries
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Define picture element media query values here | |
$m_mqs = 'min-width:321px'; | |
$l_mqs = 'min-width:641px'; | |
$xl_mqs = 'min-width:1281px'; | |
?> | |
<picture alt="Alt tag describing the image represented"> | |
<source src="photo-s.jpg"/> | |
<source src="photo-m.jpg" media="<?php ehco $m_mqs; ?>"/> | |
<source src="photo-l.jpg" media="<?php ehco $l_mqs; ?>"/> | |
<source src="photo-xl.jpg" media="<?php ehco $xl_mqs; ?>" /> | |
<img src="photo-s.jpg" /> | |
</picture> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment