饼图标签展示数值 配置项: option = { title: { text: '项目时间分布', left: 'center' }, tooltip: { trigger: 'item', formatter: '{a} <br/>{b} : {c} ({d}%)' }, legend: { or ...
分类:
其他好文 时间:
2020-07-13 11:34:37
阅读次数:
290
1 let linepopup; 2 3 LineLayer.on('mouseover', function (e) { 4 5 let loc = e.layer.feature.geometry.coordinates; 6 let tooltip = e.layer.feature.prop ...
分类:
其他好文 时间:
2020-07-13 09:53:39
阅读次数:
120
##使用方法 用css中的display:none方法; 用chrome浏览器,右键审查,获得css路径,在按右键,审查,copy-selector; 使用stylish等插件; ###虎扑css .hp-threeNav, body > div.hp-header.hp-header-A, #ta ...
分类:
Web程序 时间:
2020-07-11 17:39:56
阅读次数:
104
<html> <head> <title>Tippy</title> </head> <body> <button data-tippy-content="我是你大爷">Text1</button> <button data-tippy-content="我是你二大爷">Text2</button> ...
分类:
编程语言 时间:
2020-07-11 12:48:32
阅读次数:
52
1.grid布局实现(一) .father{ display:grid; align-item:center; justify-items:center; } 2.grid布局实现(二) .father{ display:grid; align-item:center; justify-conten ...
分类:
Web程序 时间:
2020-07-10 13:11:05
阅读次数:
90
function randomValue() { return Math.round(Math.random()*2000); } option = { backgroundColor:'block', tooltip: {}, visualMap: { min: 0, max: 2000, tex ...
分类:
其他好文 时间:
2020-07-09 15:19:48
阅读次数:
71
dfs找到解,return true, 不需要继续找了,不然回溯将恢复整个棋盘。 或者, 记录下该解,继续找下一个解(如果存在多解, 但一般不需要)。 import java.util.*; public class Main { static int[][] grid; static boolea ...
分类:
其他好文 时间:
2020-07-09 12:27:26
阅读次数:
52
图片放大预览功能参考网站:https://github.com/mirari/v-viewer 1、安装依赖npm install v-viewer --save2、在main.js中全局引入 import Vue from 'vue'; import Viewer from 'v-viewer' ...
分类:
其他好文 时间:
2020-07-08 15:28:35
阅读次数:
99
You are given a map in form of a two-dimensional integer grid where 1 represents land and 0 represents water. Grid cells are connected horizontally/ve ...
分类:
其他好文 时间:
2020-07-08 09:14:32
阅读次数:
54
把gb2312置换成utf-8 $text=iconv("GB2312","UTF-8",$text); 在用$text=iconv("UTF-8","GB2312",$text)过程中,如果遇到一些特别字符时,如:"—",英文名中的"."等等字符,转换就断掉了。这些字符后的文字都没法继续转换了。 ...
分类:
Web程序 时间:
2020-07-07 18:12:25
阅读次数:
68