CSS3 - 转换延迟仅在关闭时?

时间:2013-12-04 08:30:44

标签: css css3 css-transitions

a {
background: white;    
transition: background 1s ease;
transition-delay: 1s;
}

b {
background: black;
}

这使得过渡在1秒后关闭,但也开始。 是否有可能立即开放但在1s后关闭?

1 个答案:

答案 0 :(得分:0)

使用以下代码而不是您的代码。让我知道:

a {
  background: white;    
  transition: background 1s ease;
  transition-delay: 0s;
  transition-duration:5s;
  }

b {
 background: black;
 }