X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fticker.js;h=fe8a096116fadf0bb2246498ce6739937317c218;hb=29ef3f7db6bc1d39c658a15d95d22e45bbd59c16;hp=8c73c1ae6fa0c2ef120a7e7ecfd3005de4765fed;hpb=a22465e854f0f8a57dca27817b1f96a08fd343d5;p=brisk.git diff --git a/web/ticker.js b/web/ticker.js index 8c73c1a..fe8a096 100644 --- a/web/ticker.js +++ b/web/ticker.js @@ -50,19 +50,25 @@ train.prototype = { notebox: null, width: 0, deltat: 250, - deltas: 12, + deltas: 10, 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) { @@ -98,6 +104,7 @@ train.prototype = { if (dostart) { this.start(); } + }, rem: function(table) @@ -172,7 +179,7 @@ train.prototype = { start_move: function() { - this.deltas = 5; + this.deltas = 10; }, shut_wagon: function(args) @@ -200,6 +207,8 @@ train.prototype = { curw = wag.widthbox_get() - 10; wag.w = curw + 2; // 2 for border pixels if (curw <= 0) { + wag.cb_mouseout(); + obj.box.removeChild(wag.box); obj.rem_obj(wag); @@ -239,6 +248,9 @@ train.prototype = { resetx: function() { + this.deltas = 10; + this.clickable = true; + this.box.style.left = this.anc.offsetWidth+"px"; },