ecms_fullscreen.js 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. var lstart=0
  2. var loop=true
  3. var speed=85
  4. var pr_step=3
  5. var newspeed=800
  6. var newspeed2=0
  7. function makeObj(obj,nest){
  8. nest=(!nest) ? '':'document.'+nest+'.'
  9. this.css=(document.layers) ? eval(nest+'document.'+obj):eval(obj+'.style')
  10. this.scrollHeight=(document.layers) ?
  11. this.css.document.height:eval(obj+'.offsetHeight')
  12. this.scrollWidth=(document.layers) ?
  13. this.css.document.width:eval(obj+'.offsetWidth')
  14. this.up=goUp
  15. this.obj = obj + "Object"
  16. eval(this.obj + "=this")
  17. return this
  18. }
  19. function goUp(speed){
  20. if(parseInt(this.css.top)>-(this.scrollHeight-0)){
  21. this.css.top=parseInt(this.css.top)-pr_step-1
  22. setTimeout(this.obj+".up("+speed+")",35)
  23. }else {
  24. if(navigator.appName == "Netscape")
  25. {
  26. tome=setInterval(this.obj+".setClipne()",50)}
  27. else{
  28. tome=setInterval('setClipie()',50)
  29. tmp=DGbanner4Cont.style.clip;
  30. }
  31. }
  32. }
  33. function setClipne(){
  34. //this.css.clip.right=this.css.clip.right-pr_step;
  35. //this.css.clip.left=this.css.clip.left+pr_step;
  36. //temp=parseInt(this.css.clip.right)-parseInt(this.css.clip.left);
  37. if(temp==0)
  38. {clearInterval(tome);
  39. document.DGbanner4Cont.document.DGbanner4News.visibility="hide";
  40. document.DGbanner4Cont.visibility="hide";
  41. }
  42. }
  43. function setClipie()
  44. {
  45. newspeed=newspeed-pr_step;
  46. newspeed2=newspeed2+pr_step;
  47. temp="rect(0px "+newspeed+"px 600px "+newspeed2+"px)";
  48. this.css.clip=temp;
  49. if(newspeed<newspeed2)
  50. {
  51. clearInterval(tome);
  52. DGbanner4News.style.display="none"
  53. DGbanner4Cont.style.display="none"
  54. }
  55. }
  56. function slideInit(){
  57. oSlide=makeObj('DGbanner4News','DGbanner4Cont')
  58. oSlide.css.top=lstart
  59. oSlide.up(speed)
  60. }
  61. function myload(){
  62. setTimeout("slideInit()",4000);
  63. }
  64. myload()