Last active
May 21, 2020 11:13
-
-
Save Manyaka/97388b74b05b0c897c3d8bdba5cfb0d0 to your computer and use it in GitHub Desktop.
webp in css https://jsfiddle.net/Vosem/xk3vn54p/
This file contains 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
div { | |
margin: 1em auto; | |
width: 50vw; | |
height: 50vh; | |
background-color: gray; | |
background-image: url("img.webp"); | |
background-position: 50% 50%; | |
background-size: cover; | |
@supports (background-image: -webkit-image-set(url("img.webp") 1x)) { | |
background-image: -webkit-image-set( | |
url("img.webp") 1x, | |
url("[email protected]") 2x); | |
} | |
.ie & { | |
background-image: url("img.jpg"); | |
} | |
} | |
div { | |
// для сафари, потому что она не понимает webp, работает беcпрефиксное правило | |
// отдельно, потому что внутри блока не работает дисейбл автопрефиксера | |
/* autoprefixer: ignore next */ | |
@supports (background-image: image-set(url("img.jpg") 1x)) { | |
background-image: image-set( | |
url("img.jpg") 1x, | |
url("[email protected]") 2x); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment