我已将Malihu的自定义滚动条添加到我的流星应用中:http://atmospherejs.com/mrt/malihu-custom-scrollbar
我有这段代码:
Template.post.rendered = function() {
$('body').mCustomScrollbar({
theme: 'minimal-dark'
});
}
并且我看到它向body
添加了正确的类,但是,我没有看到自定义滚动条,而是看到了正常的滚动条。
我错过了什么?我需要做些什么吗?
顺便说一句,我正在使用Meteor v0.9.0
答案 0 :(得分:2)
我自己需要这个并最终编写一个快速包以使其与Meteor v0.9.0.1
您可以在此处找到它:http://atmospherejs.com/maazalik/malihu-jquery-custom-scrollbar
我在一些元素上进行了测试,结果很好。