上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 39 下一页
摘要: 阅读全文
posted @ 2019-03-09 23:15 strawqqhat 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-03-09 22:38 strawqqhat 阅读(754) 评论(0) 推荐(0) 编辑
摘要: prop() 方法设置或返回被选元素的属性和值。当该方法用于返回属性值时,则返回第一个匹配元素的值。当该方法用于设置属性值时,则为匹配元素集合设置一个或多个属性/值对。注意:prop() 方法应该用于检索属性值,例如 DOM 属性(如 selectedIndex, ... 阅读全文
posted @ 2019-03-09 22:20 strawqqhat 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 使用jQuery完成表格隔行换色 编号 姓名 年龄 1 张三 22 2 李四 25 ... 阅读全文
posted @ 2019-03-09 21:10 strawqqhat 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 1、基本选择器2、层级选择器3、基本过滤选择器4、属性选择器 阅读全文
posted @ 2019-03-09 20:56 strawqqhat 阅读(132) 评论(0) 推荐(0) 编辑
摘要: Num1:单例模式基本概念:保证一个类仅有一个实例,并提供一个访问它的全局访问点。常见写法:懒汉式public class Singleton { /* 持有私有静... 阅读全文
posted @ 2019-03-09 17:39 strawqqhat 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 原链接:https://www.nowcoder.com/discuss/110687目录1面java线程的实现方式,用runable实现一下,写出来blockingqueue实现原理数据库优化了解那些dom解析了解那些设计模式简单说一下2面说一下实习的项目如果有一个... 阅读全文
posted @ 2019-03-09 17:33 strawqqhat 阅读(434) 评论(0) 推荐(0) 编辑
摘要: 目录一面java基础集合类多线程JVMGC二面最精彩的是HR面总监面:当时直接是投的简历到斗鱼的邮箱,然后收到斗鱼的面试邀请,没有做笔试到了斗鱼,先让我填一张信息表,然后给了我一份纸质笔试题,六七道Java的基础知识理解(简答题),比如接口和抽象类的区别。两道算法题。... 阅读全文
posted @ 2019-03-08 15:08 strawqqhat 阅读(366) 评论(0) 推荐(0) 编辑
摘要: 目录1、线程池参数的意义,如何设置线程池参数。线程池调优怎么调优。JAVA线程池调优2、数据库连接池 最大连接数、最小连接数3、敏捷开发4、mybatis的使用 批量插入和分页5、Class类的意义,以及反射的处理6、如何在java/spring中创建全局变量7、ja... 阅读全文
posted @ 2019-03-08 13:40 strawqqhat 阅读(412) 评论(0) 推荐(0) 编辑
摘要: 源文件: 注册页面 登录 注册 购物车 ... 阅读全文
posted @ 2019-03-07 15:11 strawqqhat 阅读(894) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 39 下一页
#home h1{ font-size:45px; } body{ background-image: url("放你的背景图链接"); background-position: initial; background-size: cover; background-repeat: no-repeat; background-attachment: fixed; background-origin: initial; background-clip: initial; height:100%; width:100%; } #home{ opacity:0.7; } .wall{ position: fixed; top: 0; left: 0; bottom: 0; right: 0; } div#midground{ background: url("https://i.postimg.cc/PP5GtGtM/midground.png"); z-index: -1; -webkit-animation: cc 200s linear infinite; -moz-animation: cc 200s linear infinite; -o-animation: cc 200s linear infinite; animation: cc 200s linear infinite; } div#foreground{ background: url("https://i.postimg.cc/z3jZZD1B/foreground.png"); z-index: -2; -webkit-animation: cc 253s linear infinite; -o-animation: cc 253s linear infinite; -moz-animation: cc 253s linear infinite; animation: cc 253s linear infinite; } div#top{ background: url("https://i.postimg.cc/PP5GtGtM/midground.png"); z-index: -4; -webkit-animation: da 200s linear infinite; -o-animation: da 200s linear infinite; animation: da 200s linear infinite; } @-webkit-keyframes cc { from{ background-position: 0 0; transform: translateY(10px); } to{ background-position: 600% 0; } } @-o-keyframes cc { from{ background-position: 0 0; transform: translateY(10px); } to{ background-position: 600% 0; } } @-moz-keyframes cc { from{ background-position: 0 0; transform: translateY(10px); } to{ background-position: 600% 0; } } @keyframes cc { 0%{ background-position: 0 0; } 100%{ background-position: 600% 0; } } @keyframes da { 0%{ background-position: 0 0; } 100%{ background-position: 0 600%; } } @-webkit-keyframes da { 0%{ background-position: 0 0; } 100%{ background-position: 0 600%; } } @-moz-keyframes da { 0%{ background-position: 0 0; } 100%{ background-position: 0 600%; } } @-ms-keyframes da { 0%{ background-position: 0 0; } 100%{ background-position: 0 600%; } }