最初隐藏 JQTouch 浮动栏

发布于 2024-10-24 18:57:12 字数 897 浏览 1 评论 0原文

我想在页面最初加载时隐藏 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

还给你自由 2024-10-31 18:57:12

还没有尝试过,但这可能会起作用:

$(document).ready(function() {
    $('.floaty').removeClass('active');
});

然后它将被隐藏,直到您添加活动类。

Haven't tried it, but this might work:

$(document).ready(function() {
    $('.floaty').removeClass('active');
});

Then it will be hidden until you add the active class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文