css 在英雄部分背景上添加淡化到黑色过渡效果/叠加http://codepen.io/peterramsing/pen/jAxVBB/

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 在英雄部分背景上添加淡化到黑色过渡效果/叠加http://codepen.io/peterramsing/pen/jAxVBB/相关的知识,希望对你有一定的参考价值。

#hero {
	background: $white url("../images/hero-background-mobile.jpg") no-repeat center bottom;
	background-size: cover;

}
#hero::after {
	display: block;
	position: relative;
	background-image: linear-gradient(to bottom, transparent 0%, $black 100%);
	margin-top: -175px;
	height: 175px;
	width: 100%;
	content: '';
}

以上是关于css 在英雄部分背景上添加淡化到黑色过渡效果/叠加http://codepen.io/peterramsing/pen/jAxVBB/的主要内容,如果未能解决你的问题,请参考以下文章

css3正片叠底

css 过渡不透明度淡入淡出背景

CSS中3d导航为什么要加过渡效果

css3中的过渡效果和动画效果

css如何实现颜色的过渡效果

CSS入门(背景各种属性的详解垂直居中和过渡效果的详解渐变效果的简单讲解)