html 图像替换扩展占位符
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 图像替换扩展占位符相关的知识,希望对你有一定的参考价值。
<div class="header">
<div class="logo"><h1 class="title ir">h1.title</h1></div>
<div class="navigation"><p>navigation goes here</p></div>
<div class="social"></div>
</div>
.logo, .social {
border: 0;
font: 0/0 a;
text-shadow: none;
color: transparent;
background-color: transparent;
}
.logo {
background-image: url(http://i.imgur.com/yYnyJ.jpg);
background-size: 100% auto;
background-repeat: no-repeat;
width: 200px;
height: 200px;
}
.social {
background-image: url(http://i.imgur.com/yYnyJ.jpg);
background-size: 100% auto;
background-repeat: no-repeat;
width: 100px;
height: 100px;
}
// ----
// Sass (v3.4.13)
// Compass (v1.0.3)
// ----
%ir {
border: 0;
font: 0/0 a;
text-shadow: none;
color: transparent;
background-color: transparent;
}
.logo {
@extend %ir;
background-image: url(http://i.imgur.com/yYnyJ.jpg);
background-size: 100% auto;
background-repeat: no-repeat;
width: 200px;
height: 200px;
}
.social {
@extend %ir;
background-image: url(http://i.imgur.com/yYnyJ.jpg);
background-size: 100% auto;
background-repeat: no-repeat;
width: 100px;
height: 100px;
}
<div class="header">
<div class="logo"><h1 class="title ir">h1.title</h1></div>
<div class="navigation"><p>navigation goes here</p></div>
<div class="social"></div>
</div>
以上是关于html 图像替换扩展占位符的主要内容,如果未能解决你的问题,请参考以下文章
是否可以在图像内制作占位符并稍后替换它?
如何使用 Flare 动画作为带有淡入动画的图像占位符
在使用 CSS 加载或破坏图像源时操作图像占位符
用 Chrome 中的自定义文本替换默认的 html5 日期占位符
如何为 YouTube 视频添加启动画面/占位符图像 [关闭]
如何在 Ionic 2 或 3 应用程序中加载实际图像之前显示占位符图像