09 2017 档案
摘要:keyframes应用在animation上,animation应用在元素上。
阅读全文
摘要:.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,...
阅读全文
摘要:一、存储过程 二、定时任务。创建定时任务二种方式 2.1、语句块 2.2、oracle客户端(PL/SQL Developer)
阅读全文
摘要:js评价五星 1、图片(star.png): 2、图片和html文件在同级目录
阅读全文
摘要:注意点:1、被update主表一定要加上过滤条件。2、查询出来更新结果集,同时也要作为被更新主表的条件,作为同步大家都是更新这部分数据。update student stu set (stu.name,stu.sex) = (select bak.name,bak.sex from student_
阅读全文
摘要:在线css兼容性处理地址:autoprefixer.github.io
阅读全文
摘要:js页面加载完后执行javascript(document.onreadystatechange 和 document.readyState)
阅读全文
摘要:$.ajax({ type: "get", async: false, url: "ajax.htm", dataType: "jsonp", jsonp: "callback", //传到服务器端参数名,需要协商一致 jsonpCallback: "callbackFunction", //传到服
阅读全文
摘要://ie? if (!!window.ActiveXObject || "ActiveXObject" in window){ //是 alert(1); }else{ //不是 alert(222); }
阅读全文
摘要:ps -ef |grep tomcat |grep -v grep |awk '{print $2}' |xrags kill -9
阅读全文
摘要: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
阅读全文