123456789101112131415 |
- $(function () {
- setTimeout(function () { initWrapperTop(true) }, 150);
- $(".news-item").click(function () {
- localStorage.href = window.location.href;
- })
- })
- function initWrapperTop(zx) {
- $("#ads-wrapper").show();
- var h1 = $("#ads-wrapper").height();
- var h = h1 + 70;
- if (zx) {
- h = h + 70;
- }
- $("#wrapper1").css({ top: h + "px" })
- }
|