作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在制作一个个人网站,我想做的是一个简单的动画。
这是代码:
<div class="wrapper">--- Main website body ---</div>
<div class="intro1">
<div class="name1">John</div>
<div class="name2">Doe</div>
</div>
<div class="intro2">
<div class="prof1">Designer</div>
<div class="prof2">Developer</div>
</div>
<style>
body {background: rgba(0,0,0,1); margin: 0px; padding: 0px; color: rgba(255,255,255,1); }
.wrapper {width:100%; height:100%; max-height: 100%; background: rgba(0,0,0,1); display: none;}
.intro1 {width: 500px; height: 150px; margin: 40% auto 0% auto; padding: 0px; display: none;}
.intro2 {width: 500px; height: 150px; margin: 40% auto 0% auto; padding: 0px; display: none;}
</style>
$(function() {
$('.intro1').fadeIn(1000).fadeOut(1000);
$(function() {
$('.intro2').fadeIn(1000).fadeOut(1000);
});
});
以下是应该发生的情况的分割:
这是我到目前为止所拥有的,我不确定下一步需要做什么。
最佳答案
试试这个:
$(function() {
$('.intro1').fadeIn(1000).fadeOut(1000, function(){
$('.intro2').fadeIn(1000).fadeOut(1000);
});
});
关于jquery - 页面加载时,使用 jQuery 淡入淡出一个又一个 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13298367/
我是一名优秀的程序员,十分优秀!