如何延迟修改css转换



我有以下代码

HTML

<a href="#" class="close">Close</a>
 <div class="box">
    <input type="text">
    <input type="text">
    <input type="text">
</div>

jQuery

$(document).ready(function () {
    $('.box').on('click', function () {
        $(this).addClass('animated');
    });
    $('.close').on('click', function () {
        $('.box').removeClass('animated');
    });
});

CSS

.box {
    width: 0;
    height: 0;
    background: #e2e2e2;
    border-radius: 50%;
    padding: 30px;
    transition: width 0.3s ease, height 0.3s ease, border-radius 0.3s ease;
    overflow: hidden;
}
input {
    opacity: 0;
    border: 1px solid #fff;
    transition: opacity 0.3s ease;
    transition-delay: 0.3s;
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 5px;
    box-sizing: border-box;
}
.box.animated {
    border-radius: 0;
    width: 400px;
    height: 400px;
    padding: 20px;
}
.box.animated > input {
    opacity: 1;
}

演示

有两件事

1) 一旦框被展开,输入元素应该是可见的。我已经使用transition-delay属性实现了这一点。

2) 但是,当首先单击关闭链接时,输入的不透明度应为0,当输入完全不可见时,框应恢复到其以前的形状,即圆形。

问题:我如何实现#2

将其添加到css

.box:not(.animated){
    transition-delay:0.3s;
}
.box:not(.animated) input{
    transition-delay:0s;
}

https://jsfiddle.net/apLtw7av/2/

解释:CCD_ 2属性将取决于是否具有类CCD_ 3。单击关闭将删除animated类,因此有一个新的transition-delay

尝试显示/隐藏如下输入字段:

$(document).ready(function () {
    $('.box').on('click', function () {
        $('.box input').show();
        $(this).addClass('animated');
    });
    $('.close').on('click', function () {
        $('.box input').hide();
        $('.box').removeClass('animated');
    });
});

这是我的anwser和示例

HTML
<span class="close">X</span>
<div class="box">
  <input type="text">
  <input type="text">
  <input type="text">
</div>
CSS
.box {
  width: 0;
  height: 0;
  background: #e2e2e2;
  border-radius: 50%;
  padding: 30px;
  transition: all 300ms ease 600ms; /*This is the only thing You need to change*/
  overflow: hidden;
}
input {
  opacity: 0;
  border: 1px solid #fff;
  transition: all 300ms ease 300ms; /*input delay + input transition time 300 + 300 = 600*/
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 5px;
  box-sizing: border-box;
}
.box.animated {
  border-radius: 0;
  width: 400px;
  height: 400px;
  padding: 20px;
}
.box.animated > input {
  opacity: 1;
}
.close{
  cursor:pointer;
  position: absolute;
  top:0px;
  font-weight:bolder;
  font-size:1.5rem;
  display:none;
}
JQuery
$(document).ready(function () {
  $('.box').on('click', function () {
    $(this).addClass('animated');
    $('.close').css({display:"block"});
  });
  $('.close').on('click', function () {
    $('.box').removeClass('animated');
    $(this).css({display:"none"});
  });
});

您需要做的唯一更改是添加一个延迟,以便它在输入之后开始,因此它类似于的输入延迟+输入转换时间查看css中的注释,以查看您需要玩的值)

还有一个提示,当您在转换中使用相同的值时,您可以使用所有

/*this*/
transition: all 0.3s ease;
/*is the same  as*/
transition: width 0.3s ease, height 0.3s ease, border-radius 0.3s ease;

希望这能帮助T04435

相关内容

  • 没有找到相关文章

最新更新