Skip to content

Valine-Ex 1.1.7 崭新样式

Compare
Choose a tag to compare
@DesertsP DesertsP released this 16 Sep 09:25
· 34 commits to master since this release

务必更新参数后使用

09/16更新内容:

  1. 全新界面,模仿Bitcron评论框
  2. 垃圾评论功能回归
  3. 移除点赞功能
  4. 增加表情包功能,可自定义常用图片表情
  5. 修复若干小问题

修复的Bug包括:

  1. 网址留空时的误判
  2. 点赞样式在一些主题中错乱的问题
  3. 其他
    <!--载入js,在</body>之前插入即可-->
    <!--Leancloud 操作库:-->
    <script src="//cdn1.lncld.net/static/js/3.0.4/av-min.js"></script>
    <!--Valine 的核心代码库-->
    <script src="./dist/Valine.min.js"></script>
    <script>
        new Valine({
            // AV 对象来自上面引入av-min.js(老司机们不要开车➳♡゛扎心了老铁)
            av: AV, 
            el: '.comment',
            emoticon_url: 'https://cloud.panjunwen.com/alu', //表情图片网址
            emoticon_list: ["吐.png","期待.png","高兴.png","吐血倒地.png","哭泣.png","欢呼.png"],//表情图片文件名
            app_id: 'Your APP ID', // 这里填写上面得到的APP ID
            app_key: 'Your APP KEY', // 这里填写上面得到的APP KEY
            placeholder: 'ヾノ≧∀≦)o来啊,快活啊!', // 留言框占位提示文字
        });
    </script>