$(function () {
  var user = $.trim($("#header_logout span").eq(0).html());
  var url = "http://xxx.com/web.php?arg=book&style=1&username=" + user;
  $("<div id='kf' style='position:absolute;right:3px;top:300px;z-index:99999;'><a target='_blank' href='" + url + "'><img width='73px' height='147px' src='/images/kf.gif' border='0' /></a></div>").appendTo("body");
  setPosition();
  $(window).scroll(
    setPosition
  );
});

function setPosition() {
  var h = (window.innerHeight) ? window.innerHeight : (document.documentElement && document.documentElement.clientHeight) ? document.documentElement.clientHeight : document.body.offsetHeight;
  var top = (h - $("#kf").height()) / 2;
  $("#kf").css("top", top + $(window).scrollTop());
}

 

相关文章:

  • 2022-12-23
  • 2021-11-07
  • 2022-12-23
  • 2021-09-30
  • 2021-12-24
  • 2022-12-23
  • 2022-02-26
  • 2021-10-30
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-03
相关资源
相似解决方案