美文网首页
使用Ironman为FIBOS BP网站部署投票代码

使用Ironman为FIBOS BP网站部署投票代码

作者: ansenyu | 来源:发表于2018-09-03 21:14 被阅读0次

    现在,FIBOS 超级节点BP只需要在网站部署几行代码就可以调用Ironman浏览器插件,用户就可以自己一键投票啦。

    废话不说,以Ironman网站举例:

    • 第一步在页面中插入一个页面元素,可以是按钮或者他任意元素,元素id取值为"vote_with_ironman"。


      image.png
    • 第二步,在页面body中嵌入以下几行代码,修改代码中BP账号bp2vote变量

      <!-- 页面上添加一个元素,id设置为vote_with_ironman -->
      <script type="text/javascript" src="https://qcloudtest-1256426052.cos.ap-guangzhou.myqcloud.com/fibos.20180902.js"></script>
      <script type="text/javascript" src="https://ansenyu.github.io/js/bignumber.min.js"></script>
      <script type="text/javascript" src="https://ansenyu.github.io/js/vote.js"> </script>
      <script type="text/javascript">
            // 设置要投票的BP的账号
            const bp2vote = "ansenironman"
    
          $('#vote_with_ironman').on('click', function (event) {
            event.preventDefault();
            if (null == window.ironman) {
                alert("请先安装Ironman浏览器插件(foironman.com)");
            }
          });
      </script>
    

    搞定!就是这么简单,效果请上foironman.com上体验,谢谢!

    相关文章

      网友评论

          本文标题:使用Ironman为FIBOS BP网站部署投票代码

          本文链接:https://www.haomeiwen.com/subject/fnniwftx.html