zx.js 426 B

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