如何用CSS添加过渡效果

时间:2017-03-10 15:03:12

标签: css css3 toggle

我已经玩过以下代码,以便在onclick时轻柔轻柔地转换效果。切换元素打开非常快速和困难。我想让它更柔软一点。实际上,我不知道哪个类或ID或选择器会影响它。

演示:jsfiddle

CSS:

.toggle-box + label:before {
    background-color: #4F5150;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    color: #FFFFFF;
    content: "+";
    display: block;
    float: left;
    font-weight: bold;
    height: 20px;
    line-height: 20px;
    margin-right: 5px;
    text-align: center;
    width: 20px;
}

1 个答案:

答案 0 :(得分:0)

您可以通过以下方式更改以下规则:

.toggle-box + label + div {
  max-height: 0;
  margin-bottom: 10px;
  transition: max-height 0.15s linear;
  overflow: hidden;
}

.toggle-box:checked + label + div {
  height: auto;
  max-height: 1000px;
  transition: max-height 3s linear;
}

需要将最大高度设置为div永远不会达到的值。

此处已更新jsfiddle