이 기사의 예에서는 Sina Weibo 홈페이지 콘텐츠와 유사한 점진적인 표시 효과를 얻기 위한 js 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 분석은 다음과 같습니다.
포인트 1:
if(list_li.length>=1){ list.insertBefore(li,list_li[0]); }else{ list.appendChild(li); }
앞에 새로운 내용을 삽입하세요. 새로운 내용이 없다면 끝에 새로운 내용을 삽입하세요.
포인트 2:
var height=li.offsetHeight; li.style.height='0';
li의 높이를 구한 다음, 높이가 0에서 현재 높이로 변경되므로 li의 높이를 0으로 설정합니다.
세 번째 사항:
startrun(li,"height",height,function(){ startrun(li,"opacity","100"); })
먼저 높이가 변경되고 투명도가 변경됩니다
마지막으로 다음 코드를 추가하세요.
<!DOCTYPE html> <html> <head> <meta charset="gb2312" /> <title>无标题文档</title> <style> <!-- body,ul,li{margin:0; padding:0; font:12px/1.5 arial;} #list{width:400px; margin:10px auto;} #list li{list-style:none; padding:5px 0 ; overflow:hidden; border-bottom:1px dotted #ccc; filter:alpha(opacity:0); opacity:0; vertical-align:middle;} --> </style> <script> <!-- window.onload = function(){ var btn = document.getElementById("btn"); var con = document.getElementById("con"); var list = document.getElementById("list"); var list_li = list.getElementsByTagName("li"); btn.onclick = function(){ var li = document.createElement("li"); li.innerHTML = con.value; con.value=''; if(list_li.length>=1){ list.insertBefore(li,list_li[0]); }else{ list.appendChild(li); } var height=li.offsetHeight; li.style.height='0'; startrun(li,"height",height,function(){ startrun(li,"opacity","100"); }) } } function getstyle(obj,name){ if(obj.currentStyle){ return obj.currentStyle[name]; }else{ return getComputedStyle(obj,false)[name]; } } function startrun(obj,attr,target,fn){ clearInterval(obj.timer); obj.timer = setInterval(function(){ var cur = 0; if(attr == "opacity"){ cur = Math.round(parseFloat(getstyle(obj,attr))*100); }else{ cur = parseInt(getstyle(obj,attr)); } var speed = (target-cur)/8; speed = speed>0?Math.ceil(speed):Math.floor(speed); if(cur == target){ clearInterval(obj.timer); if(fn){ fn(); } }else{ if(attr == "opacity"){ obj.style.filter = "alpha(opacity="+(cur+speed)+")"; obj.style.opacity = (cur+speed)/100; }else{ obj.style[attr] = cur + speed + "px"; } } },30) } //--> </script> </head> <body> <textarea id="con" cols="50" rows="5"></textarea> <input id="btn" name="" type="button" value="发布"> <ul id="list"> </ul> </body> </html>
이 기사가 모든 사람의 JavaScript 프로그래밍 설계에 도움이 되기를 바랍니다.