ex:side 右側個人快速服務區塊

[js檔]

// Add for Personal Fast Link
//<![CDATA[
var tips; var theTop = 47/*這是默認高度*/; var old = theTop;
function initFloatTips() {
  tips = document.getElementById('PersonService');
  moveTips();
};
function moveTips() {
  var tt=50;
  if (window.innerHeight) {
    pos = window.pageYOffset
  }
  else if (document.documentElement && document.documentElement.scrollTop) {
    pos = document.documentElement.scrollTop
  }
  else if (document.body) {
    pos = document.body.scrollTop;
  }
  pos=pos-tips.offsetTop+theTop;
  pos=tips.offsetTop+pos/10;
  if (pos < theTop) pos = theTop;
  if (pos != old) {
    tips.style.top = pos+"px";
    tt=10;
  }
  old = pos;
  setTimeout(moveTips,tt);
}
//!]]>

 

 

[HTML] 引用

<script src="js/js01.js" type="text/javascript"></script>

arrow
arrow
    全站熱搜

    Rita 發表在 痞客邦 留言(0) 人氣()