2016年4月19日
摘要: 分享 分享 分享 分享 分享 分享 分享 分享 分享 分享 分享 分享 分享 分享 分享 分享 分享 分享 分享 分享 随着浏览器不断的升级改进,CSS和JavaScript之间的界限越来越模糊。本来它们是负责着完全不同的功能,但最终,它们都属于网页前端技术,它们需要相互密切的合作。我们的网页中都有 阅读全文
posted @ 2016-04-19 02:19 jayruan 阅读(425) 评论(0) 推荐(0) 编辑
摘要: @echo off setlocal enabledelayedexpansion for /f "delims=" %%i in ('dir /b /s %1') do ( echo %%i identify -format "%%[fx:w] %%[fx:h]" %%i > %%i.txt fo 阅读全文
posted @ 2016-04-19 00:47 jayruan 阅读(180) 评论(0) 推荐(0) 编辑
摘要: <img data-src="/path/to/image.jpg" alt="">img { opacity: 1; transition: opacity 0.3s;} img[data-src] { opacity: 0;} [].forEach.call(document.querySele 阅读全文
posted @ 2016-04-19 00:08 jayruan 阅读(229) 评论(0) 推荐(0) 编辑
摘要: var divs = document.querySelectorAll('div'); [].forEach.call(divs, function(div) { // do whatever div.style.color = "red";}); http://www.webhek.com/di 阅读全文
posted @ 2016-04-19 00:02 jayruan 阅读(241) 评论(0) 推荐(0) 编辑