2

是否可以改变的位置gritter?或者甚至更好地将它绑定到诸如 span 或 div 之类的元素上?

我试过了:

        $.gritter.add({
            title: 'Dashboard',
            text: 'Field updated!',
            time: 2000,
            position: 'center'
       });

(也尝试使用按钮,顶部等)但位置保持不变

4

5 回答 5

11

通过阅读文档,您似乎无法像这样将砂砾居中,只有'bottom-left','bottom-right','top-left','top-right'

$.extend($.gritter.options, { 
    position: 'bottom-left', // defaults to 'top-right' but can be 'bottom-left', 'bottom-right', 'top-left', 'top-right' (added in 1.7.1)
    fade_in_speed: 'medium', // how fast notifications fade in (string or int)
    fade_out_speed: 2000, // how fast the notices fade out
    time: 6000 // hang on the screen for...
});

如果你用 css 改变位置怎么办?

于 2013-08-27T09:25:40.330 回答
3

你可以试试...

//css

.gritter-center{
position:fixed;
left:33%;
right:33%;
top:33%
}

//Javascript

$.gritter.add({
 title: 'This is a centered notification',
 text: 'Just add a "gritter-center" class_name to your $.gritter.add or globally to   $.gritter.options.class_name',
 class_name: 'gritter-info gritter-center'  
});
于 2014-10-13T04:47:42.523 回答
2

将自定义类“中心”添加到您的特定 css 文件中

#gritter-notice-wrapper.center {
    position:fixed; 
    left:33%; 
    right:33%; 
    top:33%;
}

调整 css 参数以调整 gritter 通知位置。

  • 对 jquery.gritter.js 进行变通(int add 函数...)

换行

position = $.gritter.options.position,

position = params.position || $.gritter.options.position,

最后调用你的 add gritter 函数

$.gritter.add({
            title: 'Dashboard',
            text: 'Field updated!',
            time: 2000,
            position: 'center'
       });
于 2015-12-07T11:29:52.727 回答
1

通过 css 更改位置,例如左侧和顶部位置:

$("#gritter").css('left',"100px");
$("#gritter").css('top',"20px");
于 2013-08-27T09:25:14.273 回答
0

而不是做 33%,这将使砂砾靠近中心但几乎总是稍微偏离,我建议如下。如果您也将研磨机自定义为不同/非固定宽度,这应该可以工作。

#gritter-notice-wrapper.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

然后,(如 bech 所述)允许按照最初的要求配置位置,而不是仅在 js 文件中的选项中配置:

在 jquery.gritt.js 中,替换

position = $.gritter.options.position,

position = params.position || $.gritter.options.position,
于 2016-01-29T17:08:41.467 回答