X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fticker.js;h=fe8a096116fadf0bb2246498ce6739937317c218;hb=29ef3f7db6bc1d39c658a15d95d22e45bbd59c16;hp=980261dbda76be9a1cc845773d47f65578a4cc0e;hpb=61777f564d9c25aeea2542a9f2fdad87b5a4780b;p=brisk.git diff --git a/web/ticker.js b/web/ticker.js index 980261d..fe8a096 100644 --- a/web/ticker.js +++ b/web/ticker.js @@ -49,19 +49,27 @@ train.prototype = { box: null, notebox: null, width: 0, - deltat: 100, - deltas: 5, + deltat: 250, + 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() { - this.box.style.visibility = "hidden"; + $('tickbut').style.visibility = "visible"; + $('tickbut').style.width = "20px"; + + this.clickable = false; for (cur = this.first ; cur != null ; cur = cur.next) { if (cur.notebox != null) { cur.cb_mouseout(); @@ -96,6 +104,7 @@ train.prototype = { if (dostart) { this.start(); } + }, rem: function(table) @@ -170,7 +179,7 @@ train.prototype = { start_move: function() { - this.deltas = 5; + this.deltas = 10; }, shut_wagon: function(args) @@ -195,9 +204,11 @@ 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) { + wag.cb_mouseout(); + obj.box.removeChild(wag.box); obj.rem_obj(wag); @@ -209,7 +220,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() @@ -237,6 +248,9 @@ train.prototype = { resetx: function() { + this.deltas = 10; + this.clickable = true; + this.box.style.left = this.anc.offsetWidth+"px"; }, @@ -361,7 +375,9 @@ wagon.prototype = { cb_click: function() { - act_sitdown(this.table); + if (this.anc.clickable == true) { + act_sitdown(this.table); + } }, cb_mouseover: function()