js 텍스트 가 왼쪽 에서 날 아 오 르 는 효과

2111 단어
코드 를 붙 이기 전에 원 리 를 말씀 드 리 겠 습 니 다. 우 리 는 setInterval 을 사용 하여 처음에 화면 에 보이 지 않 는 위치 에 텍스트 를 두 고 좌우 상하 가 모두 가능 하 게 한 다음 에 그 위 치 를 화면 에 보 이 는 위치 로 계속 옮 깁 니 다.
아래 코드:
html:

"flyin" style="position:relative;left:-400;font-style:italic"> "Arial">


js:
if (document.getElementById||document.all)
var crossheader=document.getElementById? document.getElementById("flyin").style : document.all.flyin.style
function animatein(){
if (parseInt(crossheader.left)<0)
crossheader.left=parseInt(crossheader.left)+20
else{
crossheader.left=0
crossheader.fontStyle="normal"
clearInterval(start)
}
}
if (document.getElementById||document.all)
start=setInterval("animatein()",50)

 
다음으로 전송:https://www.cnblogs.com/cczlovexw/p/7357006.html

좋은 웹페이지 즐겨찾기