javascript Wordpress - 使用addClass + CSS将div滚动到某个位置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript Wordpress - 使用addClass + CSS将div滚动到某个位置相关的知识,希望对你有一定的参考价值。

.sticky {
position: fixed;
top: 250px;
margin: 0px 0px 0px 43px;
}

@media (max-width: 768px) {
.sticky {
position: fixed;
top: 20px;
left: 50%;
transform: translateX(-50%);
margin: 0px;
}
}
window.onscroll = function() {stickySplash()};
window.onresize = function() {stickySplash()};

var $document = jQuery(document);

function stickySplash() {
var $view = jQuery( window ).height();
  if ( ($document.scrollTop() >= $view - 60) ) {
    jQuery("#splash").removeClass('sticky');
  }
  else if ($document.scrollTop() <= $view - 60) {
    jQuery("#splash").addClass('sticky');
  }
}

以上是关于javascript Wordpress - 使用addClass + CSS将div滚动到某个位置的主要内容,如果未能解决你的问题,请参考以下文章

如何使wordpress属性移动响应

使 WordPress 站点可以从 LAN 内部和外部访问

如何使 wordpress 管理菜单默认折叠?

wordpress - 错误 403 文件 javascript 插件 wordpress

php 使WordPress默认视频嵌入响应

在wordpress中使图像响应?