码迷,mamicode.com
首页 >  
搜索关键字:transition property duration timing-function delay    ( 11734个结果
SqlMapConfig.xml配置文件
配置内容 SqlMapConfig.xml 中配置的内容和顺序 -properties(属性) --property -settings(全局配置参数) --setting -typeAliases(类型别名) --typeAliase --package -typeHandlers(类型处理器) ...
分类:数据库   时间:2020-07-14 13:08:22    阅读次数:77
spring+mybatis+springMVC框架配置多数据源
1.在spring配置文件中配置 <!--第一个数据源--> <!-- 配置c3p0 数据源 --> <bean id="dataSource1" class="com.mchange.v2.c3p0.ComboPooledDataSource"> <property name="driverCla ...
分类:编程语言   时间:2020-07-13 22:00:17    阅读次数:76
ESP8266+OLED(时间跳动)
1 #include <Arduino.h> 2 #include <U8g2lib.h> 3 #include <Wire.h> 4 5 //iic驱动方式 6 U8G2_SSD1306_128X64_NONAME_1_SW_I2C u8g2(U8G2_R0, /* clock=*/ SCL, / ...
分类:其他好文   时间:2020-07-13 18:51:14    阅读次数:108
C#反射赋值(更新时用)
/// <summary> /// 私有辅助方法 /// </summary> /// <param name="db"></param> /// <param name="entity"></param> private void UpdateHelper(T db, T entity) { fo ...
分类:Windows程序   时间:2020-07-13 11:13:25    阅读次数:70
SpringBoot配置文件加载顺序
##内部配置加载顺序 SpringBoot 启动会扫描以下位置的application.properties或者application.yml文件作为Spring boot的默认配置文件 –file:./config/ –file:./ –classpath:/config/ –classpath: ...
分类:编程语言   时间:2020-07-12 20:25:58    阅读次数:74
vue 报错:TypeError: Cannot read property '$createElement' of undefined
TypeError: Cannot read property '$createElement' of undefinedat render (eval at ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_module ...
分类:其他好文   时间:2020-07-12 18:55:59    阅读次数:111
路由器Web页面交互Tips
路由器Web页面开发中基于cgi形式, 一个页面对应一个c语言文件,如 network-lan.c → lan_setup.cgi wan.c → wan.cgi 以network-lan.c 为例,该文件包括 main函数,Web页面生成,参数保存和读取的方法。 Web页面采用了HTML+Java ...
分类:Web程序   时间:2020-07-12 18:31:22    阅读次数:91
DelayQueue
一个BlockingQueue,用于放置实现了Delayed接口的对象,其中的对象只能在其到期时才能从队列中取走。这种队列是有序的,即队头的对象的延迟到期的时间最长。如果没有任何延迟到期,那么就不会有任何元素,并且poll将返回null ...
分类:其他好文   时间:2020-07-12 12:25:27    阅读次数:59
python实现隔段时间点击一下电脑屏幕的某块区域
import time import pyautogui x, y = 302, 534 # 鼠标需要移动到的位置 num_seconds = 2 # 将鼠标移动到指定坐标的间隔时间 time.sleep(8) # 延迟8秒 pyautogui.moveTo(x, y, duration=num_s ...
分类:编程语言   时间:2020-07-12 11:58:43    阅读次数:98
Go Web服务器的构造
Go提供了一套完整的Web服务器标准库,使得go构建服务器非常简单,创建服务器只需要调用ListenAndServe即可。相应的Web函数库在net/http包中,本文参考《Go Web编程》中的内容,介绍服务器的构造,有兴趣的小伙伴可以亲自去翻阅这本书。 首先构建两种最简单的服务器: packag ...
分类:Web程序   时间:2020-07-12 10:33:49    阅读次数:100
11734条   上一页 1 ... 31 32 33 34 35 ... 1174 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!