【发布时间】:2016-07-10 14:01:12
【问题描述】:
我不知道以前是否有人问过这个问题,但无论我在哪里看,答案都没有帮助。我要做的是将文本移开,然后抬起一个灰色框,当我将鼠标从灰色框移开时,灰色框首先下降,然后文本向后移动。使用我的代码,文本首先向后移动,这看起来不太好。恢复正常时有没有办法反转过渡顺序?这是我的 CSS:
.doge{
font-size: 50px;
font-family: "Comic Sans MS";
text-align: center;
background-image: linear-gradient(#c6a65f 70%,#cbc595 80%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-position: left;
transition: 1.6s;
}
.dogediv{
width: 537px;
height: 529px;
background-image: url("https://pbs.twimg.com/profile_images/378800000822867536/3f5a00acf72df93528b6bb7cd0a4fd0c.jpeg");
background-position: right;
position: relative;
}
.div2 {
background-color: gray;
height: 100%;
transition: 5s;
transition-delay: 1s;
}
.div2:hover > .doge{
transform: translateX(550px);
}
.div2:hover {
height: 10px;
}
HTML:
<!DOCTYPE html>
<html>
<head>
<title>Home of the Doge</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="dogediv">
<div class="div2" style="background-color: gray">
<h1 class="doge">Welcome to the Home of the Doge</h1>
</div>
</div>
</body>
</html>
【问题讨论】:
-
你能提供你的html吗?
标签: html css transition