image-set()
- 版本:CSS3
语法:
image-set() = image-set( <image-set-option># )
<image-set-option> = [ <image> | <string> ] <resolution>
说明:
image-set() 可以根据用户设备的分辨率匹配合适的图像。
-
为不同的设备分配合适得图像;
示例
div { background-image: image-set( "test.png" 1x, "test-2x.png" 2x, "test-print.png" 600dpi ); } 上述代码将会为普通屏幕使用 test.png,为高分屏使用 test-2x.png,如果更高的分辨率则使用 test-print.png,比如印刷。