Wednesday, August 27, 2014

Published 11:20 PM by with 0 comment

CSS3 Animation

<style>  @-webkit-keyframes test-css {   0%,100%  { opacity: 0;width:100px;margin-left:50px }   50% { opacity: 1;width:200px;margin-left:200px  } } @-moz-keyframes test-css {   0%,100%  { opacity: 0;width:100px;margin-left:50px }   50% { opacity: 1;width:200px;margin-left:200px  } } @-o-keyframes test-css {   0%,100%  { opacity: 0;width:100px;margin-left:50px...
Read More
    email this       edit

Sunday, January 5, 2014

Published 11:09 PM by with 0 comment

Google Excel Time Difference

Google Excel Time Difference    function TimeDiff(cell1, cell2) {         return ConvertMilliSecondsToTimeSpan(Math.abs(cell1 - cell2));     }     function ConvertMilliSecondsToTimeSpan(t) {         var cd = 24 * 60 * 60 * 1000,            ...
Read More
    email this       edit