我试图在延迟后尝试从屏幕右侧滑入延迟消息,因此我尝试了两个不同的库但没有成功。两个图书馆都没有做任何事
<script type="text/javascript" src="/sites/all/libraries/jquery-sliding-message/jquery.slidingmessage.js"></script>
<script type="text/javascript">
(function ($) {
'use strict';
Drupal.behaviors.flyoutMessage = {
attach: function(context, settings) {
var options = {id: 'message_from_top',
position: 'right',
size: 300,
backgroundColor: 'red',
delay: 1500,
speed: 500,
fontSize: '30px'
};
$.showMessage("Hello world!", options);
},
};
})(jQuery);
</script>
jGrowl方法
<script type="text/javascript" src="/sites/all/libraries/jGrowl/jquery.jgrowl.js"></script>
<script type="text/javascript">
(function ($) {
Drupal.behaviors.showAnnouncement = {
attach: function (context, settings) {
$.jGrowl("Hello world!", { sticky: true });
},
};
})(jQuery);
</script>
我查看了源代码,并且没有&#34; Hello world!&#34;消息可以在任何地方找到,并且控制台中也没有错误。我已经在两个不同的网站上尝试过这一点。