gpt4 book ai didi

javascript - 将外部自定义 CSS 与 Notify.js jQuery 插件一起使用

转载 作者:行者123 更新时间:2023-11-29 15:38:37 24 4
gpt4 key购买 nike

我刚刚开始学习 jQuery 和 CSS,对使用特定 jQuery 插件生成的 toasts/通知样式有疑问 Notify.js .

插件网站上有文档,但我无法正确理解如何限制我的 JS 文件中有关样式的代码量,而是将其保存在我的外部 CSS 文件中。看起来您应该能够为您的 CSS 类使用正确的命名约定,然后以一些简单的方式进行。

所以代替

$.notify.addStyle('check', {
html : "<div><span data-notify-text/></div>",
classes : {
base : {
"white-space" : "nowrap",
"background-color" : "#cccccc",
"padding" : "5px",
"font-family" : "Comic Sans MS"
},
uncheck : {
"color" : "white",
"background-color" : "#252525"
}
}
});

我想在我的外部 CSS 文件中使用这样的东西

.notifyjs-check-base { 
white-space: nowrap;
background-color: #D3D3D3;/*lightgray*/
padding: 5px;
font-family: Comic Sans MS; }

.notifyjs-check-uncheck{
color: white,
background-color: #252525;}

然后只是有类似的东西

$.notify.addStyle('check');

在我的 js 文件中使用我的通知样式。

所有这些都在 Chrome 扩展中用于向用户显示消息。

你会怎么做?做今天的好事,帮助初学者 :)

最佳答案

如果我没有正确理解你的问题,我猜你想分开你的 javascript 和 css 代码。然后你可以在你的 javascript 文件中写入这个。

 $.notify.addStyle('foo', {
html:
"<div>" +
"<div class='clearfix'>" +
"<div class='title' data-notify-html='title'/>" +
"<div class='buttons'>" +
"<button class='no'>Cancel</button>" +
"<button class='yes' data-notify-text='button'></button>" +
"</div>" +
"</div>" +
"</div>"
});

和外部 css 文件中的其余 css 类

.notifyjs-foo-base {
opacity: 1;
width: 200px;
background-color: #DFF0D8;
color:#468847;
border-color:#D6E9C6;
padding: 5px;
border-radius: 10px;
font-weight:bold;
}

.notifyjs-foo-base .title {
width: 100px;
float: left;
margin: 10px 0 0 10px;
text-align: right;
}

.notifyjs-foo-base .buttons {
width: 70px;
float: right;
font-size: 9px;
padding: 5px;
margin: 2px;
}

.notifyjs-foo-base button {
font-size: 9px;
padding: 5px;
margin: 2px;
width: 60px;
}

关于javascript - 将外部自定义 CSS 与 Notify.js jQuery 插件一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23907699/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com