jquery 带有背景蒙版的警报。?

发布于 2024-12-02 13:57:20 字数 225 浏览 2 评论 0原文

如何使用背景蒙版发出警报(蒙版适用于整页)? (我不想使用插件

说明:单击按钮或链接后,显示带有背景蒙版的警报。

喜欢这里的演示=> http://thrivingkings.com/apprise/

how is make a alert with background mask(mask is for full page)? (i don't want use of plugin)

Explanation: After click on a button or link, show an alert with the background mask.

Like demo in here=> http://thrivingkings.com/apprise/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

他不在意 2024-12-09 13:57:20

在演示中,您拥有带有很多选项的定制解决方案。如果不使用任何插件或自定义脚本 - 您将无法自定义警报对话框。

非常非常简单的示例:

.alert { width:200px; height:80px; margin:-40px 0 0 -100px; position:absolute; left:50%; top:50%; background:red; text-align:center; }

        $('#btnAlert').click(function () {
            var $alertDiv = $('<div class="alert">This is the alert text.</div>');
            $('body').append($alertDiv);
            $alertDiv.click(function () {
                $(this).fadeOut(100);
            });
            $alertDiv.fadeIn(100);
        });

On the demo you have custom built solution with a lot of options. Without using any plugins or custom scripts - you will not be able to customize alert dialog.

very, very simple sample:

.alert { width:200px; height:80px; margin:-40px 0 0 -100px; position:absolute; left:50%; top:50%; background:red; text-align:center; }

        $('#btnAlert').click(function () {
            var $alertDiv = $('<div class="alert">This is the alert text.</div>');
            $('body').append($alertDiv);
            $alertDiv.click(function () {
                $(this).fadeOut(100);
            });
            $alertDiv.fadeIn(100);
        });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文