X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fticker.js;h=c2c8808250589bc36c0644f26df4c2996f9aa53f;hb=93a49a9f99e52c693a3f06f6edbe27f9f1ef7c68;hp=e4362ff29d25b3cc70d3775b5192b9d41a638599;hpb=b7e8800bffee3d4a134444475570f584d76d5c2b;p=brisk.git diff --git a/web/ticker.js b/web/ticker.js index e4362ff..c2c8808 100644 --- a/web/ticker.js +++ b/web/ticker.js @@ -49,20 +49,26 @@ train.prototype = { box: null, notebox: null, width: 0, - deltat: 100, - deltas: 5, + deltat: 250, + deltas: 12, xend: 0, timout: null, clickable: true, show: function() { + $('tickbut').style.visibility = "hidden"; + $('tickbut').style.width = "0px"; + this.clickable = true; this.box.style.visibility = "visible"; }, hide: function() { + $('tickbut').style.visibility = "visible"; + $('tickbut').style.width = "20px"; + this.clickable = false; for (cur = this.first ; cur != null ; cur = cur.next) { if (cur.notebox != null) { @@ -197,7 +203,7 @@ train.prototype = { wag.box.innerHTML = ""; wag.shut_step = 2; } - curw = wag.widthbox_get() - 4; + curw = wag.widthbox_get() - 10; wag.w = curw + 2; // 2 for border pixels if (curw <= 0) { obj.box.removeChild(wag.box); @@ -211,7 +217,7 @@ train.prototype = { } } this.redraw(); - setTimeout(function(){ arguments[0][0].shut_wagon(arguments[0]); }, 100, [ obj, wag ]); + setTimeout(function(){ arguments[0][0].shut_wagon(arguments[0]); }, 250, [ obj, wag ]); }, redraw: function()