zx.js 383 B

123456789101112131415
  1. $(function () {
  2. setTimeout(function () { initWrapperTop(true) }, 150);
  3. $(".news-item").click(function () {
  4. localStorage.href = window.location.href;
  5. })
  6. })
  7. function initWrapperTop(zx) {
  8. $("#ads-wrapper").show();
  9. var h1 = $("#ads-wrapper").height();
  10. var h = h1 + 70;
  11. if (zx) {
  12. h = h + 70;
  13. }
  14. $("#wrapper1").css({ top: h + "px" })
  15. }