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