作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试创建一个隐藏在文档顶部屏幕之外的菜单。有一小部分显示可以悬停,这将使菜单的其余部分可见。尝试将底部设置为自动动画,但它不起作用。想知道是否有人知道如何或更好的方法来创建类似于我的代码笔的屏幕外菜单。
http://codepen.io/anthony-dandrea/pen/EjqYqj
.hud
是给我动画问题的类。
.hud {
position: absolute;
width: 100%;
text-align: center;
transition: all 1s;
bottom: calc(100% - 39px);
}
.hud:hover {
bottom: 80%;
bottom: auto;
}
最佳答案
正如 Patrick Allen 在评论中提到的那样,您不能使用 CSS 对“auto”值进行动画处理/转换。对于您的情况,您可以将其替换为 transform: translate()
,如下面的代码片段所示,并达到相同的效果。
下面是相关的 SCSS 代码及其作用:
transform: translateY(-100%)
将元素内容向上移动容器元素的确切高度。这会隐藏整个容器。top: 39px
,这样 V 形图标仍然显示,只有内容被隐藏。transform
通过执行 transform: translateY(0%)
无效。这会将元素放回原来的位置。top: 39px
出现在未悬停状态,容器的位置会偏移一点,可以通过添加 top: 0px
来消除悬停。.hud {
position: absolute;
width: 100%;
text-align: center;
transition: all 1s;
top: 39px;
transform: translateY(-100%);
&:hover {
top: 0px;
transform: translateY(0%);
}
}
body {
background: #121111;
}
.hud {
position: absolute;
color: red;
width: 100%;
text-align: center;
-webkit-transition: all 1s;
transition: all 1s;
top: 39px;
-webkit-transform: translateY(-100%);
-ms-transform: translateY(-100%);
transform: translateY(-100%);
}
.hud:hover {
top: 0px;
-webkit-transform: translateY(0%);
-ms-transform: translateY(0%);
transform: translateY(0%);
}
.pull-down {
color: #e6e6e6;
-webkit-transition: all 0.2s;
transition: all 0.2s;
cursor: pointer;
height: 24px;
margin-top: 15px;
font-size: 1.5em;
}
.pull-down:hover {
color: #fff;
}
.hud:hover .pull-down {
color: #fff;
-ms-transform: rotate(-180deg);
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg);
}
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" rel="stylesheet" />
<div class="hud">
<div class="hud-internal">
<p>foobar</p>
</div>
<i class="fa fa-chevron-down pull-down" data-hud-toggle></i>
</div>
关于css - 如何为底部 : value to bottom: auto 设置动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32163601/
我是一名优秀的程序员,十分优秀!