﻿/*------------------------------------------------------------------------------
//  Warning : This computer program is protected by copying law and international treaties.
//  unauthorized reproduction program or any portion of it will be prosecuted to the maximum extent possible under law .
//  Forbidding : Redistribution of this code, whole or in part, as source code  or in binary form, alone or 
//  as part of a larger distribution or product, is forbidden for any commercial or for-profit or Non-commercial
//  use without the author's explicit written permission.
//  Author : email:ruihade@hotmail.com , ruihade@gmail.com ,location: taiwan, cellphone:0919910435
//<script language="javascript" src="..\App_Js\masterint.js"></script>
-----------------------------------------------------------------------------*/
var speed = 30
var dont = false;
function moving(){
    try {
        if (kanbano.offsetWidth - kanband.scrollLeft <= 0)
        { kanband.scrollLeft -= kanbani.offsetWidth }
        else {
            kanband.scrollLeft++
        }
    }
    catch (e) {
        if (!dont) {
            alert("RedhotSoft:" + e.message); //只提示一次
            dont = true;
        }
    }
}
function kanbanstart() {
    kanbano.innerHTML = kanbani.innerHTML
    var myKanband = setInterval(moving, speed);
    kanband.onmouseover = function() { clearInterval(myKanband) }
    kanband.onmouseout = function() { myKanband = setInterval(moving, speed) }
}
