javascript - 使用javascript css隐藏显示div

标签 javascript jquery css twitter-bootstrap

我想慢慢隐藏或显示我的 div 。下面脚本中的逻辑应该是什么。当我单击按钮时,现有的 div 隐藏和另一个 div 显示。有人会回答吗?这是我的代码片段。

  function myFunction() {
    var x = document.getElementById('before-e');
    var y = document.getElementById('after-e');
    if (x.style.display === 'none') {
        x.style.display = 'block';
    } else {
        y.style.display = 'block';
        x.style.display = 'none';
    }

}
.favorites-right-before-expand {
    background-color: #5642BE;
    color: #fff;
    height: 155px;
    width: 106px;
    margin-left: -8px;
}
.matched-body {
    padding-top: 40px;
}
.per {
    margin-bottom: -8px;
}
.prog-percent {
    margin-left: 9px;
    font-size: 16px;
}
.prog-percent {
    margin-left: 9px;
    font-size: 16px;
}
.my-progress {
    height: 10px;
    margin-bottom: 0px;
    border-radius: 0px;
    margin-left: 9px;
    margin-right: 15px;
}
.favorites-right-before-expand button {
    color: #D6DA22;
    font-size: 8px;
    text-decoration: underline;
    margin-left: 2px;
    background: none;
    border-style: none;
}
.per {
    margin-bottom: -8px;
}
.prog-percent-after {
    margin-left: 21px;
    font-size: 16px;
}
.prog-percent-after {
    margin-left: 21px;
    font-size: 16px;
}
.my-progress-after {
    height: 10px;
    margin-bottom: 0px;
    border-radius: 0px;
    margin-left: 21px;
    margin-right: 42px;
}
.expand ul {
    list-style: none;
    color: #D6DA22;
    font-size: 10px;
    margin-left: -17px;
    position: relative;
    margin-top: 7px;
}
.favorites-right {
    background-color: #5642BE;
    color: #fff;
    height: 180px;
    width: 142px;
    padding-top: 13px;
}
<div class="favorites-right" style="display: none;" id="after-e">
                <div class="prog-percent-after per">80%</div>
                <div class="prog-percent-after"> MATCHED</div>
              <div class="progress my-progress-after">
                <div class="progress-bar" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width:80%">
                </div>
              </div>
               <div class="expand">
                <ul>
                  <li> You both do not smoke</li>
                  <li> You both live in Bangldesh</li>
                  <li> Ridhika seems to like photography</li>
                  <a href="#" style="color: #D6DA22;font-size: 10px;text-decoration: underline;">See more>></a>
                </ul>     
              </div>
            </div><!-- end favorites-right-->
 <div class="favorites-right-before-expand" id="before-e">
              <div class="matched-body">
                <div class="prog-percent per">80%</div>
                <div class="prog-percent"> MATCHED</div>
              <div class="progress my-progress">
                <div class="progress-bar" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width:80%">
                      </div>
              </div>
              <button onclick="myFunction()" class="expand_button">Expand Categories>></button>
              </div><!--end matched-body-->
            </div><!-- end favorites-right-before-expand -->

最佳答案

如果你想让一个元素淡出,然后在动画完成后淡入另一个元素,你可以在.fadeOut函数的第二个参数中传入一个函数。在此函数中,您 .fadeIn 第二个元素。

这是一个例子

500 是以毫秒为单位的延迟

$('#first-element').fadeOut(500, function() {
    $('#second-element').fadeIn();
});

代码中的示例

function myFunction() {
    $('#before-e').fadeOut(500, function() {
        $('#after-e').fadeIn();
    });
}
.favorites-right-before-expand {
    background-color: #5642BE;
    color: #fff;
    height: 155px;
    width: 106px;
    margin-left: -8px;
}
.matched-body {
    padding-top: 40px;
}
.per {
    margin-bottom: -8px;
}
.prog-percent {
    margin-left: 9px;
    font-size: 16px;
}
.prog-percent {
    margin-left: 9px;
    font-size: 16px;
}
.my-progress {
    height: 10px;
    margin-bottom: 0px;
    border-radius: 0px;
    margin-left: 9px;
    margin-right: 15px;
}
.favorites-right-before-expand button {
    color: #D6DA22;
    font-size: 8px;
    text-decoration: underline;
    margin-left: 2px;
    background: none;
    border-style: none;
}
.per {
    margin-bottom: -8px;
}
.prog-percent-after {
    margin-left: 21px;
    font-size: 16px;
}
.prog-percent-after {
    margin-left: 21px;
    font-size: 16px;
}
.my-progress-after {
    height: 10px;
    margin-bottom: 0px;
    border-radius: 0px;
    margin-left: 21px;
    margin-right: 42px;
}
.expand ul {
    list-style: none;
    color: #D6DA22;
    font-size: 10px;
    margin-left: -17px;
    position: relative;
    margin-top: 7px;
}
.favorites-right {
    background-color: #5642BE;
    color: #fff;
    height: 180px;
    width: 142px;
    padding-top: 13px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="favorites-right" style="display: none;" id="after-e">
                <div class="prog-percent-after per">80%</div>
                <div class="prog-percent-after"> MATCHED</div>
              <div class="progress my-progress-after">
                <div class="progress-bar" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width:80%">
                </div>
              </div>
               <div class="expand">
                <ul>
                  <li> You both do not smoke</li>
                  <li> You both live in Bangldesh</li>
                  <li> Ridhika seems to like photography</li>
                  <a href="#" style="color: #D6DA22;font-size: 10px;text-decoration: underline;">See more>></a>
                </ul>     
              </div>
            </div><!-- end favorites-right-->
 <div class="favorites-right-before-expand" id="before-e">
              <div class="matched-body">
                <div class="prog-percent per">80%</div>
                <div class="prog-percent"> MATCHED</div>
              <div class="progress my-progress">
                <div class="progress-bar" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width:80%">
                      </div>
              </div>
              <button onclick="myFunction()" class="expand_button">Expand Categories>></button>
              </div><!--end matched-body-->
            </div><!-- end favorites-right-before-expand -->

关于javascript - 使用javascript css隐藏显示div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43638550/

相关文章:

Javascript - 我以为这会改变

javascript - 如何在 ng-repeat 中使用 ng-switch 来编辑 JSON API 数据

javascript - 如何使用标准的 javascript 方法选择节点数组

javascript - Jquery:.show() div 功能未按预期工作?

ajax - 如何通过tooltip显示数据库中的数据?

javascript - 控制SVG动画起点

javascript - 如何使用 HTML、CSS 和 Javascript 制作幻灯片,在 iPhone 的图像上显示应用程序的图像?

javascript - 通过正则表达式删除标签符号 js

javascript - ngIf 和 ngAnimate - 动画期间重复的 HTML 内容

html - 嵌套导航列表中的 CSS3 列大小和对齐问题