如何设置底部动画:从值到底部:自动



我正试图创建一个隐藏在文档顶部屏幕外的菜单。显示的一小部分将是可悬停的,这将使菜单的其余部分进入视野。尝试将底部动画设置为自动,但不起作用。我想知道是否有人知道如何或更好地在屏幕外创建类似于我的代码笔的菜单。

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从"自动"值动画化/转换到"自动"的值。对于您的案例,您可以像下面的代码片段中那样用transform: translate()替换它,并获得相同的效果。

以下是相关的SCSS代码及其作用:

  • transform: translateY(-100%)将元素内容向上移动容器元素的确切高度。这会隐藏整个容器
  • 添加了top: 39px,使得V形图标仍然显示并且仅隐藏内容
  • 悬停时,通过执行transform: translateY(0%)使transform无效。这会将元素放回其原始位置
  • 但是,由于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>

$('#click').click(function () {
    var windowHeight = $(window).height();
    var lineHeight = $('#line').height();
    var desiredBottom = 100;
    var newPosition = windowHeight - (lineHeight + desiredBottom);
    $('#line').animate({top:newPosition},1000,function () {
        $('#line').css({
            bottom: desiredBottom,
            bottom: 'auto'
        });
    });
});

这里jsfiddle

top: 0;赋予.hud元素,它将正常工作。这是代码笔:http://codepen.io/anon/pen/KpOKdE

相关内容

  • 没有找到相关文章

最新更新