canvas手绘正五边形

2019-11-26 11:09:22

参考地址 canvas手绘正五边形

一、基本用法:

alertShow(param: any, $index: any) {

        let $log = this.$log;

        let $scope = this.$scope;

        if (param !== $scope.lastObj) {

            param.show = true;

            if ($scope.lastObj !== null) {

                $scope.lastObj.show = false;

            }

            $scope.lastObj = param;

            $scope.radarAlert = true;

            if ($index === 0) {

                $(".radarChart_alert").css({left: $scope.arr[$index].x + 100 + "px", top: $scope.arr[$index].y + "px"});

            } else {

                $(".radarChart_alert").css({left: $scope.arr[$index].x, top: $scope.arr[$index].y + 40 + "px"});

            }

        }

    }

drawRadarChart() {

    $scope.radarChartCategroy = [

            {name1: "词汇短语", name2: "排名前34%", show: false},

            {name1: "口语运用", name2: "排名前34%", show: false},

            {name1: "听力理解", name2: "排名前34%", show: false},

            {name1: "阅读理解", name2: "排名前34%", show: false},

            {name1: "语法句法", name2: "排名前34%", show: false}

        ];

        let $scope = this.$scope;

        let width: any, long: any, samll: any, big: any;

        getWidth();

        function getWidth() {

            width = $(".nav").width();

            $(".radarChart_div").height(width);

            $(".nav").height(width);

            $("#radarChart").attr({width: width, height: width});

            long = width / 2;

            samll = (width / 2) * Math.tan(36 * Math.PI / 180);

            big = (width / 2) / Math.cos(36 * Math.PI / 180);

            window.requestAnimationFrame(draw);

            let radarBtnWidth = $(".radarChart_select").width();

            let radarBtnHeight = $(".radarChart_select").height();

            $scope.arr = [

                {x: long - radarBtnWidth / 2, y: 5 - radarBtnHeight - 15},

                {x: -radarBtnWidth - 5, y: samll + 5 - radarBtnHeight / 2},

                {x: big * Math.sin(18 * Math.PI / 180) - radarBtnWidth * 2 / 3, y: big * Math.cos(18 * Math.PI / 180) + samll + radarBtnHeight / 2},

                {x: big * Math.sin(18 * Math.PI / 180) + big - radarBtnWidth / 3, y: big * Math.cos(18 * Math.PI / 180) + samll + radarBtnHeight / 2},

                {x: 2 * long + 5, y: samll + 5 - radarBtnHeight / 2}

            ]

            for (let i = 0; i < $scope.arr.length; i++) {

                $(".radarChart_select").eq(i).css({left: $scope.arr[i].x + "px", top: $scope.arr[i].y + "px"});

            }

        }

        function draw() {

            let canvas = document.getElementById("radarChart");

            if (canvas.getContext) {

                var ctx = canvas.getContext("2d");

                ctx.clearRect(0, 0, width, width);

                ctx.beginPath();

                ctx.lineWidth = 1;

                ctx.lineJoin = "miter";

                ctx.strokeStyle = "rgba(255,255,255,.5)";

                ctx.moveTo(long, 5);

                ctx.lineTo(0, samll + 5);

                ctx.lineTo(big * Math.sin(18 * Math.PI / 180), big * Math.cos(18 * Math.PI / 180) + samll + 5);

                ctx.lineTo(big * Math.sin(18 * Math.PI / 180) + big, big * Math.cos(18 * Math.PI / 180) + samll + 5);

                ctx.lineTo(2 * long, samll + 5);

                ctx.lineTo(long, 5);

                ctx.moveTo(long, long / Math.sin(72 * Math.PI / 180));

                ctx.lineTo(long, 5);

                ctx.moveTo(long, long / Math.sin(72 * Math.PI / 180));

                ctx.lineTo(0, samll + 5);

                ctx.moveTo(long, long / Math.sin(72 * Math.PI / 180));

                ctx.lineTo(big * Math.sin(18 * Math.PI / 180), big * Math.cos(18 * Math.PI / 180) + samll + 5);

                ctx.moveTo(long, long / Math.sin(72 * Math.PI / 180));

                ctx.lineTo(big * Math.sin(18 * Math.PI / 180) + big, big * Math.cos(18 * Math.PI / 180) + samll + 5);

                ctx.moveTo(long, long / Math.sin(72 * Math.PI / 180));

                ctx.lineTo(2 * long, samll + 5);

                ctx.stroke();

                ctx.save();

                ctx.beginPath();

                ctx.fillStyle = "rgba(255,255,255,.5)";

                ctx.moveTo(long, long / Math.sin(72 * Math.PI / 180) - $scope.num + 5);

                ctx.lineTo(long - $scope.num * Math.sin(72 * Math.PI / 180), long / Math.sin(72 * Math.PI / 180) - $scope.num * Math.cos(72 * Math.PI / 180) + 5);

                ctx.lineTo(long - $scope.num * Math.sin(36 * Math.PI / 180), long / Math.sin(72 * Math.PI / 180) + $scope.num * Math.cos(36 * Math.PI / 180) + 5);

                ctx.lineTo(long + $scope.num * Math.sin(36 * Math.PI / 180), long / Math.sin(72 * Math.PI / 180) + $scope.num * Math.cos(36 * Math.PI / 180) + 5);

                ctx.lineTo(long + $scope.num * Math.sin(72 * Math.PI / 180), long / Math.sin(72 * Math.PI / 180) - $scope.num * Math.cos(72 * Math.PI / 180) + 5);

//                ctx.lineTo(long, long / Math.sin(72 * Math.PI / 180) - $scope.num + 5);

                ctx.fill();

                ctx.save();

                ctx.restore();

                if ($scope.time2 < 60) {

                    window.requestAnimationFrame(draw);

                    $scope.num = $scope.num + long / 60;

                    $scope.time2 = $scope.time2 + 1;

                }

            }

        }

    }

}

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

            <div>

                <div class="radarChart_div"></div>

                <div class="nav">

                    <canvas id="radarChart"></canvas>

                    <div class="radarChart_select" ng-repeat="item in radarChartCategroy" ng-click="events.alertShow(item, $index)"

                         ng-class="{'radarChart_select_true':item.show,'radarChart_select_flase':!item.show}">

                        <div>{{item.name1}}</div>

                        <div>{{item.name2}}</div>

                    </div>

                    <div class="radarChart_alert" ng-style="radarAlert ? {'display': 'flex'} : {'display': 'none'}">

                        <div>213道</div>

                        <div>72%</div>

                        <div>正确答题</div>

                        <div>正确率</div>

                    </div>

                </div>

                <div class="radarChart_div"></div>              

            </div>



  • 2019-12-06 10:49:39

    npm 查看源 换源

    npm,cnpm,查看源,切换源,npm config set registry https://registry.npmjs.org

  • 2019-12-06 11:01:31

    npm发布包流程详解 有demo

    npm发布包步骤,以及踩过的坑(见红颜色标准): 1.注册npm账号,并完成Email认证(否则最后一步提交会报Email错误) 2.npm添加用户或登陆:npm adduser 或 npm login

  • 2019-12-06 13:16:18

    vue mixins组件复用的几种方式

    最近在做项目的时候,研究了mixins,此功能有妙处。用的时候有这样一个场景,页面的风格不同,但是执行的方法,和需要的数据非常的相似。我们是否要写两种组件呢?还是保留一个并且然后另个一并兼容另一个呢? 不管以上那种方式都不是很合理,因为组件写成2个,不仅麻烦而且维护麻烦;第二种虽然做了兼容但是页面逻辑造成混乱,必然不清晰;有没有好的方法,有那就是用vue的混合插件mixins。混合在Vue是为了提出相似的数据和功能,使代码易懂,简单、清晰。

  • 2019-12-06 13:26:30

    vue的mixins混入合并规则

    混入minxins:分发vue组件中可复用功能的灵活方式。混入对象可以包含任意组件选项。组件使用混入对象时,所有混入对象的选项将混入该组件本身的选项。

  • 2019-12-06 16:50:34

    Intellij idea 如何关闭无用的提示

    Linux:Settings —> Editor —> Inspections —> General —> Duplicated Code Mac:Preferences --> Editor —> Inspections —> General —> Duplicated Code fragment 将对应的勾去掉。

  • 2019-12-09 15:36:56

    神秘的 shadow-dom 浅析,shadow-root

    顾名思义, shadow-dom,直译的话就是 影子dom ?我觉得可以理解为潜藏在黑暗中的 DOM 结构,也就是我们无法直接控制操纵的 DOM 结构。前端同学经常用开发者工具的话,查看 DOM 结构的时候,肯定看到过下面这样的结构:

  • 2019-12-10 11:13:50

    前端实战-基于Nuxt的SVG使用

    虽然我们在日常开发的时候,在使用iview 或者element ui等组件时,通常会包含一些常用icon;但是在面对一些特定的需求时,或者自己想high一下,这些通用的icon并不能很好的满足我们。这个时候我们可能会拿到一些SVG适量图,但是怎么去使用这些矢量图呢。

  • 2019-12-10 11:15:08

    用CSS给SVG 的内容添加样式

    SVG图形的一个最常见用例是图标系统,其中最常用的SVG sprite技术就是使用SVG<use> 元素在文档中任意位置“实例化”图标。 使用<use>元素实例化图标或任何其它的SVG元素或图像,给元素添加样式时经常会碰到一些问题。这篇文章的目的是尽可能给你介绍一些方法来解决:使用<use>引入的内容添加样式受限的问题。 但是在开始之前,我们先快速浏览一下SVG的主要结构和分组元素,然后慢慢进入use的世界中,以及shadow DOM,然后重回CSS的怀抱。我们会逐步讲解为什么给<use>内容添加样式会比较麻烦,以及有什么好的解决方案。