09 2017 档案

摘要:keyframes应用在animation上,animation应用在元素上。 阅读全文
posted @ 2017-09-25 11:47 N神3 阅读(219) 评论(0) 推荐(0) 编辑
摘要:.arrow_box{animation: glow 800ms ease-out infinite alternate; } @keyframes glow { 0% { border-color: #393; box-shadow: 0 0 5px rgba(0,255,0,.2), inset 0 0 5px rgba(0,255,0,... 阅读全文
posted @ 2017-09-22 23:43 N神3 阅读(11102) 评论(1) 推荐(2) 编辑
摘要:一、存储过程 二、定时任务。创建定时任务二种方式 2.1、语句块 2.2、oracle客户端(PL/SQL Developer) 阅读全文
posted @ 2017-09-22 23:41 N神3 阅读(1575) 评论(0) 推荐(0) 编辑
摘要:js评价五星 1、图片(star.png): 2、图片和html文件在同级目录 阅读全文
posted @ 2017-09-21 22:13 N神3 阅读(564) 评论(0) 推荐(0) 编辑
摘要:注意点:1、被update主表一定要加上过滤条件。2、查询出来更新结果集,同时也要作为被更新主表的条件,作为同步大家都是更新这部分数据。update student stu set (stu.name,stu.sex) = (select bak.name,bak.sex from student_ 阅读全文
posted @ 2017-09-20 11:21 N神3 阅读(9916) 评论(0) 推荐(1) 编辑
摘要:1、顶部滚动条 阅读全文
posted @ 2017-09-19 22:48 N神3 阅读(168) 评论(0) 推荐(0) 编辑
摘要:在线css兼容性处理地址:autoprefixer.github.io 阅读全文
posted @ 2017-09-19 22:16 N神3 阅读(151) 评论(0) 推荐(0) 编辑
摘要:js页面加载完后执行javascript(document.onreadystatechange 和 document.readyState) 阅读全文
posted @ 2017-09-19 22:05 N神3 阅读(733) 评论(0) 推荐(0) 编辑
摘要:$.ajax({ type: "get", async: false, url: "ajax.htm", dataType: "jsonp", jsonp: "callback", //传到服务器端参数名,需要协商一致 jsonpCallback: "callbackFunction", //传到服 阅读全文
posted @ 2017-09-07 23:40 N神3 阅读(142) 评论(0) 推荐(0) 编辑
摘要://ie? if (!!window.ActiveXObject || "ActiveXObject" in window){ //是 alert(1); }else{ //不是 alert(222); } 阅读全文
posted @ 2017-09-07 18:30 N神3 阅读(192) 评论(0) 推荐(0) 编辑
摘要:ps -ef |grep tomcat |grep -v grep |awk '{print $2}' |xrags kill -9 阅读全文
posted @ 2017-09-05 18:22 N神3 阅读(238) 评论(0) 推荐(0) 编辑
摘要:function dateHanle(d1,d2){ if(Date.parse(d1) - Date.parse(d2)==0) { console.log("d1等于d2"); return 0; } if(Date.parse(d1) - Date.parse(d2)<0) { console 阅读全文
posted @ 2017-09-04 11:50 N神3 阅读(498) 评论(0) 推荐(0) 编辑