Как бы я установить высоту и ширину нотного уведомления
Есть ли в любом случае установить высоту и ширину нотного уведомления. Вот мой код в настоящее время:
$(document).ready(function () {
noty({
layout: 'topRight',
type: 'alert',
text: "<a href='C:\\Users\\dah\\Documents\\AlertJqueryNP\\alertjquery.html' target='_blank'>Alerts:"+count+"</a>",
template: '<div class="noty_message"><span class="noty_text"></span></div>',
closeWith: ['button'],
dismissQueue: true,
timeout: false
});
3 ответа
Решение
Вы можете сделать это с помощью CSS. Какую бы ширину и высоту вы ни выбрали, просто установите это в CSS, и это должно работать.
.noty-message{
width:100px;
height:100px;
}
Для org.webjars.bower.noty:3.1.4 макет выглядит так:
<div id="noty_layout__bottomRight" ....
</div>
noty.css
#noty_layout__bottomRight {
bottom: 20px;
right: 20px;
width: 325px;
}
Чтобы изменить ширину, добавьте в css:
#noty_layout__bottomRight {
width: 350px !important;
}
Это должно заставить его быть 100px:
#noty_topRight_layout_container,
#noty_topRight_layout_container > li,
#noty_bar, #noty_type_alert {
width: 100px !important;
}