全文搜索
标题搜索
全部时间
1小时内
1天内
1周内
1个月内
默认排序
按时间排序
为您找到相关结果1,038,867个

echarts环形图内部圆、外部圆形及阴影设置方法_javascript技巧_脚本...

normal: { color: new this.$echarts.graphic.LinearGradient(0, 0, 0, 1, [ { offset: 0, color: '#87CEFF' }, { offset: 1, color: '#ffffff' } ]), } }, } ] }; option && myChart.setOption(option); } 总结 到此这篇关于echarts环形图内部圆、外部圆形及阴影设置方法的文章就介绍...
www.jb51.net/javascript/305718f...htm 2025-3-18

Three.js+React实现3D文字悬浮效果_javascript技巧_脚本之家

本文中涉及到的知识点主要包括:CSS 网格背景、MeshNormalMaterial 法向材质、FontLoader 字体加载器、TextGeometry 文本缓冲几何体、TorusBufferGeometry 圆环缓冲几何体、ConeBufferGeometry 圆锥缓冲几何体、OctahedronBufferGeometry 八面缓冲几何体、Three.js 后期渲染、GlitchPass 通道、Element.requestFullscreen、Document.exit...
www.jb51.net/article/2401...htm 2025-3-14

Vue项目导入字体文件的方法步骤_vue.js_脚本之家

font-weight:normal; font-style:normal; } @font-face { font-family:"PingFangSC-Regular"; src:url('./PingFang\ SC\ Regular.ttf'); font-weight:normal; font-style:normal; } @font-face { font-family:"PingFangSC-Semibold"; src:url('./PingFang\ SC\ Semibold.ttf'); ...
www.jb51.net/javascript/318940v...htm 2025-3-18

Java用itextpdf导出PDF方法(通俗易懂)_java_脚本之家

Paragraph paragraph = new Paragraph(text, new Font(bfChinese, 16, Font.NORMAL)); paragraph.setAlignment(alignment); //设置文字居中 0靠左 1,居中 2,靠右 paragraph.setIndentationLeft(0); //设置左缩进 paragraph.setIndentationRight(0); //设置右缩进 paragraph.setFirstLineIndent(0); //设置首行缩进...
www.jb51.net/program/292587j...htm 2025-3-15

TensorFlow实现MLP多层感知机模型_python_脚本之家

W1=tf.Variable(tf.truncated_normal([in_units, h1_units], stddev=0.1))#初始化隐含层权重W1,服从默认均值为0,标准差为0.1的截断正态分布 b1=tf.Variable(tf.zeros([h1_units]))#隐含层偏置b1全部初始化为0 W2=tf.Variable(tf.zeros([h1_units,10])) ...
www.jb51.net/article/1361...htm 2025-2-24

C#多线程基本使用小结_C#教程_脚本之家

//BelowNormal: 线程的优先级低于正常线程。 //Normal: 线程的优先级是普通的,这是线程的默认优先级。 //AboveNormal: 线程的优先级高于正常线程。 //Highest: 线程的优先级是最高的。此优先级的线程会尽量优先于其他所有优先级的线程执行。 Thread a = new Thread(A); Thread b = new Thread(B); a.Pri...
www.jb51.net/program/328889o...htm 2025-3-17

Winform控件优化之圆角按钮1_C#教程_脚本之家

NormalColor、HoverColor、PressedColor 属性设置按钮正常状态、鼠标悬停、鼠标按下时的背景颜色,通常设置为一致即可。 指定Size的Width、Height的大小相同,Radius为正方向边长的一半,可以实现圆形按钮。 StringFormat 对象,可以提供对字符串文本的颜色、布局、方向等各种格式的设置,用于渲染文本效果。 Control.DesignMode属性...
www.jb51.net/article/2609...htm 2022-8-29

模式语法

After matching all 6 digits and then failing to match "foo", the normal action of the matcher is to try again with only 5 digits matching the \d+ item, and then with 4, and so on, before ultimately failing. Once-only subpatterns provide the means for specifying that once a portion ...
www.jb51.net/shouce/php5/zh/referenc... 2025-3-17

基于Spring-cloud-gateway实现全局日志记录的方法_java_脚本之家

case GatewayLogType.NORMAL_REQUEST: log.info("[{}] {} {},route: {},status: {},excute: {} mills,queryParams: {}" ,gatewayLog.getIp() ,gatewayLog.getMethod() ,gatewayLog.getRequestPath() ,gatewayLog.getTargetServer() ,gatewayLog.getCode() ,gatewayLog.getExecuteTime() ,gatewayLog.ge...
www.jb51.net/program/306347y...htm 2025-3-15

一文详解webpack中loader与plugin的区别_JavaScript_脚本之家

pre: 前置loader normal: 普通loader inline: 内联loader post: 后置loader 2). 执行优先级 4类 loader 的执行优级为:pre > normal > inline > post。 相同优先级的 loader 执行顺序为:从右到左,从下到上。 3. 前缀的作用 内联loader 可以通过添加不同前缀,跳过其他类型 loader。 ! 跳过normal loader。 -...
www.jb51.net/article/2740...htm 2025-2-25