我知道这个问题有其他解决办法,但我不能让他们工作
我有一个固定的div,坚持到底部。我希望当它击中#footer
时我会停下来有css所以基本上我需要一个脚本,当击中页脚的边框时,将.widget.widget_nav_menu中的类更改为.widget.widget_nav_menu.fixed_button
可能吗?
.widget.widget_nav_menu{
background: none repeat scroll 0 0 #2E3337;
bottom: 0;
padding: 25px;
position: fixed;
right: 2%;
color: #707480;
font-size: 0.8em;
opacity: 1;
text-transform: uppercase;
}
.widget.widget_nav_menu.fixed_button {
margin-right: -210px;
position: absolute !important;
top: -180px;
background: none repeat scroll 0 0 #2E3337;
padding: 25px;
right: 2%;
}
答案 0 :(得分:3)
StackOverflow上有几个答案可以解答您的问题,如果JavaScript可以检测页面是否已触及底部:
在上述帮助下,您只需更改类别即可更改:
<script>
$(function() {
$(window).scroll(function(){
//Cache the Footer Widget
var $footerMenu = $('.widget.widget_nav_menu');
//Check if it hits the bottom, toggle Relevant Class.
if ((window.innerHeight + window.scrollY) >= document.body.offsetHeight)
$footerMenu.addClass('fixed_button');
else
$footerMenu.removeClass('fixed_button');
});
});
</script>
演示小提琴:http://jsfiddle.net/fVKZe/1/
要将其包含到WordPress设置中,您需要添加一个自定义.js
文件并将其排队,直到jQuery作为依赖项加载到WordPress中。
stickymenu.js
jQuery(document).ready(function($) {
$(window).scroll(function(){
//The Above Footer Widget Code
});
});
<强>的functions.php 强>
function stickyfooter_method() {
wp_enqueue_script(
'stickymenu',
get_stylesheet_directory_uri() . '/js/stickymenu.js',
array( 'jquery' )
);
}
add_action( 'wp_enqueue_scripts', 'stickyfooter_method' );