<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
.fadeIn { animation: fadeIn .3s linear forwards background-color: red height: 100px margin-bottom: 10px }
@keyframes fadeIn {
0% { opacity: 0 height: 0 }
100% { opacity: 1 height: 100px }
}
</style>
</head>
<body>
<button id='button'>插入一个div</button>
<div id="content">
</div>
<script>
window.addEventListener('load', function() {
var i = 0
var button = document.getElementById('button')
var conntent = document.getElementById("content")
button.addEventListener('click', function(e) {
var div = document.createElement('div')
div.textContent = i++
div.className = 'fadeIn'
conntent.appendChild(div)
})
})
</script>
</body>
</html>
方法很多,最直观的就是用js控制div的display值,例如:
var div = document.getElementById('divID')div.style.display = 'none' // div隐藏
div.style.display = 'block' // div显示
也可以写一段CSS,用CSS来控制div在视觉上隐藏,例如高度设为0、透明、溢出可视区等,还可以搭配CSS3的新属性来实现灵活多样的渐变动画效果,然后用JS来切换,例如:
.isHide {height:0 overflow:hidden opacity:0} div.classList.add('isHide') // div隐藏div.classList.remove('isHide') // div显示
还可以利用jQuery的hide()、show()、fadeIn、fadeOut、toggle等方法来实现类似效果。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)