©
Dieses Dokument verwendet PHP-Handbuch für chinesische Websites Freigeben
scan:progressive | interlace
progressive:连续扫描
interlace:交织扫描
本特性不接受min和max前缀。
简单列举几个应用示例:
@media tv and (scan:progressive){ … } @import url(example.css) tv and (scan:interlace);
支持版本\类型 | IE | Firefox | Safari | Chrome | Opera |
---|---|---|---|---|---|
较早版本 | 6-8 | 4 | 5.1.7 | 13-23 | 11.5 |
较近版本 | 9 |
<!DOCTYPE html> <html lang="zh-cmn-Hans"> <head> <meta charset="utf-8" /> <title>scan of media features_CSS参考手册_web前端开发参考手册系列</title> <meta name="author" content="Joy Du(飘零雾雨), dooyoe@gmail.com, www.doyoe.com" /> <style> @media tv and (scan:progressive){ body{color:#f00;} } </style> </head> <body> <div class="test">当你的电视类设备的扫描工序为progressive时,本行文字显示为红色</div> <script> </script> </body> </html>
点击 "运行实例" 按钮查看在线实例