CSS Transform取代了div子内容

时间:2016-07-01 19:11:08

标签: html css3 animation transform css-transforms

当我在不使用变换的情况下为div设置动画时,一切都按预期工作。当我将变换添加到包含div时,内部div将移位到包含div的右侧。



html,body
{
	padding: 0px;
	margin: 0px;
	width: 1920px;
	height: 1080px;
}
.container
{
	width: 1920px;
	height: 1080px;
	background-color: rgba(0,0,0,0.3);
	overflow: hidden;
	position: relative;
}
.bottom-container
{
	float: left;
	background-color: rgba(0,0,0,0.3);
	width: 1920px;
	height: 135px;
	align-content: center;
	position: relative;
}
.b-holder
{
	background-color: rgba(255,255,0,.4);
	justify-content: center;
	width: 800px;
	margin-left: auto;
	margin-right: auto;
	height: 135px;
	animation-name: b-holder-a;
	animation-duration: 10s;
	position: fixed;
	left: 560px;
	top: 945px;
	padding: 0px;
	text-align: center;
}
@-webkit-keyframes b-holder-a
{
	0%
	{
		top: 1080px;
		opacity: 0;
		-webkit-transform: rotateX(0deg);
	}
	20%
	{
		top: 945px;
		opacity: 1;
	}
	80%
	{
		top: 945px;
		opacity: 1;
	}
	100%
	{
		top: 1080px;
		opacity: 0;
	}
}
.b-left
{
	background-color: rgba(100,0,0,0.6);
	display: inline-block;
	margin: none;
	padding: none;
	height: 135px;
	width: 246px;
	position: fixed;
	left: 714px;
	animation-name: b-left-a;
	animation-duration: 10s;
	color: #fff;
}
@-webkit-keyframes b-left-a
{
	0%
	{
		left: 745px;
	}
	20%
	{
		left: 745px;
	}
	40%
	{
		left: 560px;
	}
	60%
	{
		left: 560px;
	}
	80%
	{
		left: 745px;
	}
	100%
	{
		left: 745px;
	}
}
.b-center
{
	background-color: rgba(0,100,0,.2);
	display: inline-block;
	width: 308px;
	margin: none;
	padding: none;
	height: 135px;
	position: fixed;
	left: 806px;
	color: #fff;
}
.b-right
{
	background-color: rgba(0,0,100,0.6);
	display: inline-block;
	margin: none;
	padding: none;
	float: right;
	height: 135px;
	width: 246px;
	position: fixed;
	left: 960px;
	animation-name: b-right-a;
	animation-duration: 10s;
	background-position: right;
	color: #fff;
}
@-webkit-keyframes b-right-a
{
	0%
	{
		left: 926px;
	}
	20%
	{
		left: 926px;
	}
	40%
	{
		left: 1114px;
	}
	60%
	{
		left: 1114px;
	}
	80%
	{
		left: 926px;
	}
	100%
	{
		left: 926px;
	}
}

<div class="container">
	<div class="bottom-container">
		<div class="b-holder">
			<div class="b-left">
				LEFT
			</div>
			<div class="b-right">
				RIGHT
			</div>
			<div class="b-center">
				CENTER
			</div>
		</div>
	</div>
</div>
&#13;
&#13;
&#13; 如果从b-holder中移除了变换,则所有div都正确定位。是什么导致这种情况发生?将变换添加到包含的div动画时,如何让左右和中心div保持绝对定位?

注意:这是专为Chrome浏览器设计的

1 个答案:

答案 0 :(得分:1)

由于某些原因,添加变换时,div的内容使用绝对定位而不是固定定位。我通过更改每个动画的左侧值来解决这个问题。