CSS3 多媒体查询实例本章节我们将为大家演示一些多媒体查询实例。 开始之前我们先制作一个电子邮箱的链接列表。HTML 代码如下: <!DOCTYPE html> <html> <head> <style> ul { list-style-type: none; } ul li a { color: green; text-decoration: none; padding: 3px; display: block; } </style> </head> <body> <ul> <li><a data-email="johndoe@example.com" href="mailto:johndoe@example.com">John Doe</a></li > <li><a data-email="marymoe@example.com" href="mailto:marymoe@example.com">Mary Moe</a></li > <li><a data-email="amandapanda@example.com" href="mailto:amandapanda@example.com">Amanda Panda</a>< /li> </ul> </body> </html> 注意 520 到 699px 宽度 - 添加邮箱图标当浏览器的宽度在 520 到 699px, 邮箱链接前添加邮件图标: @media screen and (max-width: 699px) and (min-width: 520px) { ul li a { padding-left: 30px; background: url(email-icon.png) left center no-repeat; } } 700 到 1000px - 添加文本前缀信息当浏览器的宽度在 700 到 1000px, 会在邮箱链接前添加 "Email: ": @media screen and (max-width: 1000px) and (min-width: 700px) { ul li a:before { content: "Email: "; font-style: italic; color: #666666; } } 大于 1001px 宽度 - 添加邮件地址当浏览器的宽度大于 1001px 时,会在链接后添加邮件地址接。 我们会使用 @media screen and (min-width: 1001px) { ul li a:after { content: " (" attr(data-email) ")"; font-size: 12px; font-style: italic; color: #666666; } } 大于 1151px 宽度 - 添加图标当浏览器的宽度大于 1001px 时,会在人名前添加图标。 实例中,我们没有编写额外的查询块,我们可以在已有的查询媒体后使用逗号分隔来添加其他媒体查询 (类似 OR 操作符): @media screen and (max-width: 699px) and (min-width: 520px), (min-width: 1151px) { ul li a { padding-left: 30px; background: url(email-icon.png) left center no-repeat; } } |
Archiver|手机版|小黑屋|小白教程 ( 粤ICP备20019910号 )
GMT+8, 2024-11-24 14:01 , Processed in 0.027737 second(s), 18 queries .
Powered by Discuz! X3.4
© 2001-2017 Comsenz Inc. Template By 【未来科技】【 www.wekei.cn 】