﻿// JScript 文件
<!--
var speedAffiche=50 ;
Div2.innerHTML=Div1.innerHTML;
function MarqueeAffiche()
{ 
    if(Div.scrollTop>=Div1.scrollHeight)
    { 
        Div.scrollTop=0 ;
    }
    else
    { 
        Div.scrollTop++ ;
        
    } 
} 

var MyMarAffiche=setInterval(MarqueeAffiche,speedAffiche) ;
Div.onmouseover=function() {clearInterval(MyMarAffiche);} 
Div.onmouseout=function() {MyMarAffiche=setInterval(MarqueeAffiche,speedAffiche);}
-->
