码迷,mamicode.com
首页 >  
搜索关键字:index full scan    ( 44403个结果
一张包含所有颜色的图片
图片: 使用pygame编写的代码源代码: import pygame pygame.init() canvas=pygame.Surface((4096,4096)) rgb=[0,0,0] x_y=[0,0] for r in range(256): rgb[2]=0 rgb[1]=0 for ...
分类:其他好文   时间:2021-01-27 13:07:13    阅读次数:0
今天开始第一篇
作用: 依赖 ==> webpack ==> 静态资源 把错综复杂的依赖 通过 webpack 打包成 一块一块的 一. 一般把 index.js 当做入口文件,把资源变成树状 index.js | | 处理 / 打包 / less JQ .... ==> | less ==> css | => b ...
分类:其他好文   时间:2021-01-27 13:06:55    阅读次数:0
Python list 2
##从列表中找出某个值第一个匹配的索引值 list18 = [1,2,3,4,5, 3,4,5,6] index18 = list18.index(3) ##圈定范围 index19 = list18.index(3, 3, 7) print(index18, index19) ##列表中元素个数 ...
分类:编程语言   时间:2021-01-27 12:52:05    阅读次数:0
排序算法(二)选择排序 Java
一、测试类 import java.util.Arrays; public class SortTest { private static final int L = 20; public static void main(String[] args) { int [] arr = new int[ ...
分类:编程语言   时间:2021-01-26 12:42:40    阅读次数:0
DI 依赖注入(Dependency Injection)【spring基础】
1、构造器注入 <bean id="user" class="com.wang.pojo.User"> <!--方式一--> <!-- <constructor-arg index="0" value="王野"/>--> <!--方式二,不建议使用,如果有多个参数,--> <!-- <constru ...
分类:编程语言   时间:2021-01-26 12:41:18    阅读次数:0
可拖拽布局组件
import React from 'react'; import style from './index.module.scss'; const icon = `<svg t="1587390375993" class="icon" viewBox="0 0 1024 1024" version= ...
分类:其他好文   时间:2021-01-26 12:33:54    阅读次数:0
echarts 项目使用及其它自适应相关知识
1.less的使用,使用less时,需要下载Easy LESS,这样创建两个js文件,index.less及index.css,只用操作index.less会自动转化为index.css,还有设置 px时会提示转化为rem 2.动画 .div2 width: 8.0375rem; height: 8 ...
分类:其他好文   时间:2021-01-26 12:19:33    阅读次数:0
mybatis-plus整合spring
准备工作 JDK 8+ Maven 引入依赖 <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.1.6.RELEASE</version> </d ...
分类:编程语言   时间:2021-01-26 12:06:11    阅读次数:0
剑指 Offer 48. 最长不含重复字符的子字符串
原题链接 begin为最长不含重复字符的子字符串的起点 1 class Solution: 2 def lengthOfLongestSubstring(self, s: str) -> int: 3 begin,ans,dic = 0,0,{} 4 for index,c in enumerate ...
分类:其他好文   时间:2021-01-26 11:51:45    阅读次数:0
CSS(六)-- 布局(元素的层级),字体
1.层级 对于开启了定位的元素,可以通过z-index属性来指定元素的层级 z-index需要一个整数作为参数,值越大元素的层级越高,元素的层级越高越优先显示 如果元素的层级一样,则优先显示靠下的元素 祖先元素的层级再高也不会盖住后代元素 2.字体相关 2.1字体相关的样式 color:用来设置字体 ...
分类:Web程序   时间:2021-01-26 11:43:44    阅读次数:0
44403条   上一页 1 ... 46 47 48 49 50 ... 4441 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!