码迷,mamicode.com
首页 >  
搜索关键字:xssf color    ( 180593个结果
画三角形
div{ width: 0px; border: 30px solid transparent; border-left-color: tomato;} 第二种方法 div{ margin: auto; width: 0px; border-top: 20px solid transparent; ...
分类:其他好文   时间:2021-06-28 19:45:26    阅读次数:0
1054 The Dominant Color (20 分)
Behind the scenes in the computer's memory, color is always talked about as a series of 24 bits of information for each pixel. In an image, the color ...
分类:其他好文   时间:2021-06-28 19:08:20    阅读次数:0
Music!
Type One Mood —— 24kGoldn + iann dior Type Two Type Three Fast Lane —— Palm Trees + MdL + Abi F Jones ...
分类:其他好文   时间:2021-06-28 19:01:24    阅读次数:0
PHP--找出能被3整除的数,求它们的和并统计有多少个
1 <!--找出7017-9999的能被3整除的数之和,并统计有多少个--> 2 <?php 3 $s=0; 4 $count = 0; 5 for($i=7017;$i<=9999;$i++){ 6 if($i%3==0){ 7 $count++; 8 $s+=$i; 9 } 10 } 11 ec ...
分类:Web程序   时间:2021-06-28 18:53:54    阅读次数:0
leetcode-python-二叉树的最小深度
递归找最小 # Definition for a binary tree node. # class TreeNode: # def __init__(self, val=0, left=None, right=None): # self.val = val # self.left = left # ...
分类:编程语言   时间:2021-06-28 18:47:31    阅读次数:0
vue中在data中引入图片的路径方法
错误的引入方式: export default { data () { return{ imgUrl_homePage:'@/assets/img/homePage_active.png' } } } 因为webpack是按字符号打包的,正确的引入方式: 1.import在外部引入 import i ...
分类:其他好文   时间:2021-06-28 18:28:08    阅读次数:0
JDBC请求
操作步骤: 1、添加数据库jar包:拷贝mysql驱动包到jmeter/lib目录下,或者或者在测试计划处添加驱动jar包 2、配置数据库链接信息:添加-->配置元件-->JDBC Connection Configuration URL:jdbc:mysql://ip:port/dbname?us ...
分类:数据库   时间:2021-06-28 17:45:11    阅读次数:0
python绘图中文乱码解决【pylab】
加入: import pylab pylab.rcParams['font.sans-serif'] = ['SimHei'] pylab.rcParams['font.sans-serif'] = ['Microsoft YaHei'] pylab.rcParams['axes.unicode_m ...
分类:编程语言   时间:2021-06-28 17:44:52    阅读次数:0
wpf虚线画刷
//虚线 DoubleCollection dc = new DoubleCollection(); dc.Add(2); DashStyle dashstyle = new DashStyle(); dashstyle.Dashes = dc; Pen renderPen = new Pen(ne ...
分类:Windows程序   时间:2021-06-28 17:43:24    阅读次数:0
【游戏】基于matlab GUI抽签【含Matlab源码 598期】
一、简介 基于matlab GUI抽签 二、源代码 function varargout = example(varargin) % EXAMPLE M-file for example.fig % EXAMPLE, by itself, creates a new EXAMPLE or raise ...
分类:其他好文   时间:2021-06-25 17:17:35    阅读次数:0
180593条   上一页 1 ... 5 6 7 8 9 ... 18060 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!