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