最初隐藏 JQTouch 浮动栏
我想在页面最初加载时隐藏 jqtouch 的浮动栏。然后像平常一样使用切换开关。
浮动栏:http://jqtouch.com/preview/demos/ext_floaty/#test
$(function(){
$('#togglefloaty').click(function(){
$('.floaty').toggleFloaty();
$(this).removeClass('active');
return false;
});
$('#hidefloaty').click(function(){
$('.floaty');
$(this).removeClass('active');
return false;
});
$('.floaty').makeFloaty({
spacing: 20,
time: '.3s'
});
工作原理
The Floaty bar!
Testing multiple lines
Should be flexible.
有谁知道如何做到这一点?
谢谢。
I would like to hide the floaty bar for jqtouch when the page initially loads. Then use the toggle as normal.
Floaty Bar: http://jqtouch.com/preview/demos/ext_floaty/#test
$(function(){
$('#togglefloaty').click(function(){
$('.floaty').toggleFloaty();
$(this).removeClass('active');
return false;
});
$('#hidefloaty').click(function(){
$('.floaty');
$(this).removeClass('active');
return false;
});
$('.floaty').makeFloaty({
spacing: 20,
time: '.3s'
});
How It Works
The Floaty bar!
Testing multiple lines
Should be flexible.
Does anyone know how to do this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
还没有尝试过,但这可能会起作用:
然后它将被隐藏,直到您添加活动类。
Haven't tried it, but this might work:
Then it will be hidden until you add the active class.