本节我们将使用多媒体查询开发一些范例
开始之前我们先来制作一个电子邮箱的链接列表
<!DOCTYPE html>
<style>
ul {
list-style-type: none;
}
ul li a {
color: green;
text-decoration: none;
padding: 3px;
display: block;
}</style>
<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>
注意 data-email 属性,在 HTML 中我们可以使用带 data- 前缀的属性来存储信息
当浏览器的宽度在 520px 到 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;
}}
当浏览器的宽度在 700px 到 1000px, 会在邮箱链接前添加 "Email: "
@media screen and (max-width: 1000px) and (min-width: 700px) {
ul li a:before {
content: "Email: ";
font-style: italic;
color: #666666;
}}
当浏览器的宽度大于 1001px 时,会在链接后添加邮件地址接
我们会使用 data- 属性来为每个人名后添加邮件地址
@media screen and (min-width: 1001px) {
ul li a:after {
content: " (" attr(data-email) ")";
font-size: 12px;
font-style: italic;
color: #666666;
}}
当浏览器的宽度大于 1001px 时,会在人名前添加图标
下面的范例我们没有编写额外的查询块,我们可以在已有的查询媒体后使用逗号分隔来添加其它媒体查询
@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;
}}