option = { legend: { show: false }, series: [ { type: "pie", radius: [0, 0], silent: true, label: { normal: { show: true, position: "center", formatte ...
分类:
其他好文 时间:
2021-07-01 17:27:43
阅读次数:
0
/** * 自定义样式 * <p>1. 创建excel对应的实体对象 参照{@link DemoData} * <p>2. 创建一个style策略 并注册 * <p>3. 直接写即可 */ @Test public void styleWrite() { String fileName = Test ...
分类:
其他好文 时间:
2021-06-25 16:46:34
阅读次数:
0
<template> <view class="houssel"> <view class="padd23"> <view class="housemsg"> <view class="detail bgwhite"> <view class="PingFangSCBold title">待缴费明细 ...
分类:
移动开发 时间:
2021-05-24 13:04:11
阅读次数:
0
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <!--<script src="js/jquery-1.4.4.min.js" type="text/javascript" charset="utf-8" ...
分类:
Web程序 时间:
2021-04-09 13:19:04
阅读次数:
0
移动端的特殊样式 /*去除a连接点击时 后侧的高亮背景*/ a { -webkit-tap-highlight-color: transparent; } /*添加这个属性 iOS上 输入框和按钮才可以书写自定义样式*/ input { -webkit-appearance: none; } /*禁 ...
分类:
移动开发 时间:
2021-02-04 11:48:59
阅读次数:
0
Markdown Nice 支持自定义样式的在线Markdown编辑器,编辑完成后可以一键复制富文本到微信公众号、知乎和掘金等平台。多达17种主题,总有一种适合你的!平时用Typora写完文章以后,我都会用这个排版,然后复制到公众号,非常好用! 地址:https://mdnice.com/ Proc ...
分类:
Web程序 时间:
2021-01-02 10:28:10
阅读次数:
0
1 tooltip: { 2 trigger: "axis", 3 padding:0, 4 //formatter提示框浮层内容格式器,支持字符串模板和回调函数两种形式。(详细见:https://echarts.apache.org/zh/option.html#tooltip.formatter ...
分类:
其他好文 时间:
2020-12-19 12:09:40
阅读次数:
1
样式: QpushButton QPushButton{ min-width:75px; max-width:75px; min-height:20px; border:1px solid black; border-radius:5px; } QPushButton:pressed{ backgr ...
分类:
其他好文 时间:
2020-09-24 00:09:50
阅读次数:
44
方法一: 给input添加 -webkit-appearance: none; 隐藏默认样式。然后添加自己的样式就好了。 例如: .radioBox input{ -webkit-appearance: none; width: 20px; height: 20px; padding: 0; bac ...
分类:
其他好文 时间:
2020-07-29 14:32:08
阅读次数:
88
控制台打印骚操作 预备知识:console | MDN 可以直接搜 为js控制台定义样式 自定义样式 console.log 中可以通过 %c 表示 css 样式 效果1 代码1 // 打印页面相关信息(代码更新时间) let date = new Date() let a = 'backgroun ...
分类:
Web程序 时间:
2020-07-27 09:20:38
阅读次数:
135