欢迎访问服务器技术网-www.fuwuqijishu.com

CSS3 多媒体查询实例

CSS3 fuwuqijishu 2年前 (2022-06-17) 135次浏览 0个评论 扫描二维码
文章目录[隐藏]

CSS3 多媒体查询实例

本章节我们将为大家演示一些多媒体查询实例。

开始之前我们先制作一个电子邮箱的链接列表。HTML 代码如下:

实例 1

<!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>

注意 data-email 属性。在 HTML 中我们可以使用带 data- 前缀的属性来存储信息。


520 到 699px 宽度 – 添加邮箱图标

当浏览器的宽度在 520 到 699px, 邮箱链接前添加邮件图标:

实例 2

@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: “:

实例 3

@media screen and (max-width: 1000px) and (min-width: 700px) {
   
ul li a:before
{
       
content: “Email: “;
       
font-style: italic;
        color: #666666;
   
}
}


大于 1001px 宽度 – 添加邮件地址

当浏览器的宽度大于 1001px 时,会在链接后添加邮件地址接。

我们会使用 data- 属性来为每个人名后添加邮件地址:

实例 4

@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 操作符):

实例 5

@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;
   
}
}


CSS3 多媒体查询实例

更多实例

在一个网页的侧栏上使用邮件列表链接
该实例在网页的左侧栏添加了邮件链接列表。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2117.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900