我可以使用scrollTo来解决slideToggle页脚问题吗?
我正在尝试创建一个页脚,当单击链接时,该页脚将从页面底部滑动。页脚将滑出(使用slideToggle),但在向下滚动之前它是不可见的。我很确定我想要做的是使用scrollTo,这样当单击链接时,它会立即滚动到底部,同时页脚向上滑动。我不确定这是如何实现的。
这就是我目前所拥有的:
$(document).ready(function() {
$('.footermenu').hide();
$('.footertoggle').click(function() {
$('.footermenu').slideToggle(400);
return false;
});
});
任何帮助将不胜感激,谢谢。
I'm trying to create a footer that will slide from the bottom of the page when a link is clicked. The footer will slide out (using slideToggle) however it is not visible until you scroll down. I'm pretty sure what I want to do is use scrollTo so that when the link is clicked it instantly scrolls to the bottom while the footer slides up. I'm not sure how this is accomplished.
This is what I have at the moment:
$(document).ready(function() {
$('.footermenu').hide();
$('.footertoggle').click(function() {
$('.footermenu').slideToggle(400);
return false;
});
});
Any help would be appreciated, thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)