有没有可能让这些javascript和css样式在MyBB论坛中运行? 通过此脚本,人们可以在帖子中提高声誉。有两个按钮:拇指向上和拇指向下。当用户点击竖起大拇指按钮时,线程/帖子作者自动获得+1声望和拇指向下,然后获得作者获得-1声望。它也算作所有选票的百分比,并显示在拇指向上或向下拇指按钮上按住光标时给出的票数。
的CSS:
get_dummies
Javacript:
.fa_vote, .fa_voted, .fa_count {
font-size:12px;
font-family:Verdana, Arial, Helvetica, Sans-serif;
display:inline-block !important;
width:auto !important;
transition:300ms;
}
.fa_voted, .fa_vote:hover { opacity:0.4 }
.fa_voted { cursor:default }
.fa_count {
font-weight:bold;
margin:0 3px;
cursor:default;
}
.fa_positive { color:#4A0 }
.fa_negative { color:#A44 }
.fa_votebar, .fa_votebar_inner {
background:#C44;
height:3px;
}
.fa_votebar_inner {
background:#4A0;
transition:300ms;
} .fa_vote, .fa_voted, .fa_count {
font-size:12px;
font-family:Verdana, Arial, Helvetica, Sans-serif;
display:inline-block !important;
width:auto !important;
transition:300ms;
}
.fa_voted, .fa_vote:hover { opacity:0.4 }
.fa_voted { cursor:default }
.fa_count {
font-weight:bold;
margin:0 3px;
cursor:default;
}
.fa_positive { color:#4A0 }
.fa_negative { color:#A44 }
.fa_votebar, .fa_votebar_inner {
background:#C44;
height:3px;
}
.fa_votebar_inner {
background:#4A0;
transition:300ms;
}
我尝试了不同的方式,但没有想出来。 欢迎任何帮助。
干杯!
答案 0 :(得分:0)
这样做的最佳方式是为MyBB创建扩展/插件。 MyBB 1.8 Documentation on plugin creation
但如果你宁愿拥有一个hacky解决方案,那么可以通过将CSS和Javascript直接放入MyBB的CSS和模板来实现这一目标。这可以通过管理控制面板实现 - >模板&风格 - >模板。最终模板将取决于您希望代码显示的页面/页面集。我建议您阅读documentation on templates。
希望它有所帮助。