摘要:
分享 分享 分享 分享 分享 分享 分享 分享 分享 分享 分享 分享 分享 分享 分享 分享 分享 分享 分享 分享 随着浏览器不断的升级改进,CSS和JavaScript之间的界限越来越模糊。本来它们是负责着完全不同的功能,但最终,它们都属于网页前端技术,它们需要相互密切的合作。我们的网页中都有 阅读全文
摘要:
@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 阅读全文
摘要:
<img data-src="/path/to/image.jpg" alt="">img { opacity: 1; transition: opacity 0.3s;} img[data-src] { opacity: 0;} [].forEach.call(document.querySele 阅读全文
摘要:
var divs = document.querySelectorAll('div'); [].forEach.call(divs, function(div) { // do whatever div.style.color = "red";}); http://www.webhek.com/di 阅读全文