如何增加 PNotify 字体大小?
How to increase PNotify font size?
增加 PNotify 通知字体大小的最佳方法是什么?
new PNotify({
title: "Title",
text: "Some information more.",
type: "notice"
})
来自here
我没有看到任何 built-in 方法来做到这一点。您应该将 addclass: "someClass"
添加到初始化中,然后通过将描述文本写入 .someClass .ui-pnotify-text { font-size: 1.25em }
并将标题写入 .someClass .ui-pnotify-title { font-size: 1.25em }
来更改字体大小到您的自定义 CSS 文件中。
增加 PNotify 通知字体大小的最佳方法是什么?
new PNotify({
title: "Title",
text: "Some information more.",
type: "notice"
})
来自here
我没有看到任何 built-in 方法来做到这一点。您应该将 addclass: "someClass"
添加到初始化中,然后通过将描述文本写入 .someClass .ui-pnotify-text { font-size: 1.25em }
并将标题写入 .someClass .ui-pnotify-title { font-size: 1.25em }
来更改字体大小到您的自定义 CSS 文件中。