ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

圆形词云(旋转)TagCanvas

2020-12-16 15:01:49  阅读:309  来源: 互联网

标签:李大玄 canvas const yrieay 插件 label 圆形 词云 TagCanvas


昔有朝歌夜弦之高楼,上有倾城倾国之舞袖。

前端QQ群: 981668406
在此附上我的QQ: 2489757828 有问题的话可以一同探讨
我的github: 李大玄
我的私人博客: 李大玄
我的npm开源库: 李大玄
我的简书: 李大玄
我的CSDN: 李大玄
我的掘金: 李大玄
哔哩哔哩: 李大玄

在这里插入图片描述

首先咱们需要一个插件这个插件是jQuery的插件

官方文档英文的[Facepalm]

css 就不忘初心贴了 太多了 懒得找
代码是这样的 HTML

div class="cy data-flow">
            <div class="data-flow-content" data-title="客流标签词云">
              <!-- 客流标签词云 -->
              <div id="canvas-ifrshb" class="Rotation">
                <canvas id="canvas-yrieay">
                  <p>Anything in here will be replaced on browsers that support the canvas element</p>
                </canvas>
              </div>
              <div style="display: none" class="data-flow-label" id="tags">
                <ul></ul>
              </div>
            </div>
          </div>

JS

const update = function () {
  if (!$('#canvas-yrieay').tagcanvas({
    textFont: 'Impact,"Arial Black",sans-serif',
    textColour: '#fff',
    outlineColour: '#0743EC',
    reverse: true,
    textHeight: 16,
    shape: "sphere",
    depth: 0.8,
    decel: 0.99,
    padding: 0,
    wheelZoom: true,
    dragControl: false,
    fadeIn: 0,
    freezeActive: false,
    outlineMethod: "outline",
    outlineOffset: "5",
    outlineRadius: "0",
    outlineThickness: "2",
    maxSpeed: 0.05,
    initial: [0.1, -0.2], // 配置旋转速度
  }, 'tags')) {
    $('#canvas-yrieay').hide();
  }
};
const getHtml = function (result: Array) {
  $('#canvas-yrieay').attr('width', $('#canvas-ifrshb').width());
  $('#canvas-yrieay').attr('height', $('#canvas-ifrshb').height() - 10);
  const $label = $('.data-flow-label ul', '#app');
  const html = getLabels(result);
  $label.html('');
  $label.prepend(html);
  update();
};

标签:李大玄,canvas,const,yrieay,插件,label,圆形,词云,TagCanvas
来源: https://blog.csdn.net/weixin_43553701/article/details/111274094

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有