如何以较少'笨重'的方式淡化/混合2个div

时间:2016-02-09 08:05:31

标签: javascript jquery html css

NB

我的标题:

<header>
    <div style="float:left;margin-left:20px;">
       <div style="float:left; margin-left:10px;margin-top:55px;background-color:#2BC3A7; height:3px; width:200px;">&nbsp;</div>
        <div style="clear:both;float:left;"></div>
        <div style="float:left; margin-left:10px;margin-top:5px;font-family:DIN; font-size:12pt;color:#2BC3A7;">Services/Products</div>
    </div>
    </div>
</header>

我有2个div:

<div id="#content1">
    <div id="divWelcome" style="margin-top:50px;">
        <div id="headerimg" style="position: relative;">
            <div style="position: absolute; bottom:255px; left: 20px; width: 550px; font-family:DIN; font-size:23pt; font-weight:600; color: white; letter-spacing:0.01em;">
                We offer Cloud solutions for small businesses to help them manage their workflow requirements
            </div>

            <hr style="height:6px;position: absolute; bottom:210px; left: 20px; width: 490px;"/>


            <div style="position: absolute; bottom:175px; left: 20px; width: 550px; font-family:DIN; font-size:14pt; font-weight:500; color: white; letter-spacing:0.01em;">
               Our core sectors of expertise are professional services, data management and outsourcing.
            </div>

        </div>


        <div id="divAboutContents" style="margin-top:50px; background-color:red;position: relative;display: none;">
            &nbsp;
        </div>
     </div>
</div>

所以当页面加载第一个div节目时。我想要的效果是当用户按下一个按钮时divFirst轻轻消失,divSecond轻轻地消失。我已经使用了这一点jQuery,但效果看起来并不是很令人满意。

<script type="text/javascript">
    $(document).ready(function () {
        $("#divAbout").click(function () {
            $("#headerimg").fadeOut();
            $("#divAboutContents").fadeIn();
        });
    });
</script>

我还可以尝试/阅读什么?感谢

NB 这是我的CSS的一部分

#content1 {
    clear: both;
    position: absolute;
}

另外,我正在褪色另一个。只是忘了把它放在问题中。我得到的影响是'笨拙'

1 个答案:

答案 0 :(得分:4)

&#39;赏心悦目&#39;这是一个非常主观的术语,但为了改进它,您可以将两个div元素放在父容器中,绝对位于它们重叠的位置。然后根据需要在两者之间fadeToggle()。像这样:

&#13;
&#13;
$('#container').click(function() {
  $(this).find('div').fadeToggle();
})
&#13;
#container > div {
  position: absolute;
}
#divSecond {
  display: none;
}
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<div id="container">
  <div id="divFirst">some content with images</div>
  <div id="divSecond">different content with images</div>
</div>
&#13;
&#13;
&#13;

单击文本以查看淡入淡出过渡。