一段实现网站倒转特效的javascript代码
简介 之前 一直有人恼火我的网站双击会变成黑白,然后文字颠倒,其实实现这个很简单,把下面这段代码放到你的网站首页即可 代码 <script> (function () { var __timeout; var __lastTap = 0; var hell = function hell() { var hell = document.getElementById('hell'); if (hell) { hell.parentNode.removeChild(hell); } else { var style = document.createElement('style'); style.id = 'hell'; style.textContent = 'body{ background:black; -webkit-transform: scale(-1,1); -ms-transform: scale(-1,1); transform: scale(-1,1); -webkit-filter: sepia(0) saturate(0) invert(1) brigh...
