后天就是4月1日愚人节了,也就是那个可适度开玩笑、整蛊的日子了。如果你想和那些要上网的朋友或同事开个极客式玩笑,那就来试试这个国外网友Wes Bos分享的 CSS 文件吧。
/* 免责声明:恶搞带来的所有后果,请恶搞者自行负责。伯乐在线不承担任何责任。(*^__^*) */
一、打开浏览器的 Custom.css 文件
本文以 Chrome 为例(CSS 修改后立即生效),进入同事或朋友的电脑,按下面方式打开 Custom.css 文件
- Mac:
~/Library/Application Support/Google/Chrome/Default/User StyleSheets/Custom.css
- Windows XP:
系统盘:\Documents and Settings\用户名\Local Settings\Application Data\Google\Chrome\User Data\Default\User StyleSheets\Custom.css
(其他 Windows 系统类似,在个人账号中的找“应用数据” AppData……) - Ubuntu (Chromium)
:
~/.config/chromium/Default/User StyleSheets/Custom.css
二、在 Custom.css 文件中添加相应CSS代码
1. 网页上下颠倒
1 2 3 4 5 6 |
/* Turn every website upside down */ body { -webkit-transform: rotate(180deg); } |
点击查看原始尺寸图片
2. 网页旋转
1 2 3 4 5 6 |
/* Spin every Website */ body { /*-webkit-animation: spin 5s linear infinite;*/ } |
点击查看原始尺寸图片
3. 网页中所有图片上下颠倒
1 2 3 4 5 6 |
/* Flip all images upside down */ img { /*-webkit-transform: rotate(180deg);*/ } |
点击查看原始尺寸图片
4. 网页中所有图片都自转
1 2 3 4 5 6 |
/* Spin all images */ img { /*-webkit-animation: spin 1s linear infinite;*/ } |
点击查看原始尺寸图片
5. 网页倒在地上了(请用内容超过多屏的网页测试)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
/* Make every website fall over! */ /* html, body { height: 100%; } html { -webkit-perspective: 1000; } body { -webkit-transform-origin: bottom center; -webkit-transform: rotateX(-90deg); -webkit-animation: fall 1.5s ease-in; } */ |
有些网站会不起作用,往下翻网页,有种自由下落的感觉
点击查看原始尺寸图片
上面就列举这些了,其他恶搞内容,请参见下面这段 CSS 代码。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 |
/* aprilFools.css Written by Wes Bos I assume no responsibility for angry co-workers or lost productivity Put these CSS definitons into your co-workers Custom.css file. They will be applied to every website they visit as well as their developer tools. Mac: ~/Library/Application Support/Google/Chrome/Default/User StyleSheets/Custom.css PC: C:/Users/YourUsername/AppData/Local/Google/Chrome/User Data/Default/User StyleSheets/Custom.css Ubuntu (Chromium): ~/.config/chromium/Default/User StyleSheets/Custom.css */ /* Turn every website upside down */ body { /*-webkit-transform: rotate(180deg);*/ } /* blur every website for a split second every 30 seconds */ body { /*-webkit-animation: blur 30s infinite;*/ } /* Spin every Website */ body { /*-webkit-animation: spin 5s linear infinite;*/ } /* Flip all images upside down */ img { /*-webkit-transform: rotate(180deg);*/ } /* COMIC SANS EVERYTHING */ body, p, body p, body div p { /*font-family: 'Comic Sans MS', cursive !important;*/ } /* Spin all images */ img { /*-webkit-animation: spin 1s linear infinite;*/ } /* Hide every 2nd paragraph element on a page */ p:nth-child(2) { /*display:none !important;*/ } /* Spin dev tools round and round */ #-webkit-web-inspector { /*-webkit-animation: spin 1s linear infinite; */ } /* Flip dev tools upside down */ #-webkit-web-inspector { /*-webkit-transform:rotate(180deg);*/ } /* Hide the close button */ #-webkit-web-inspector .toolbar-item.close-left { /*display:none !important;*/ } /* Make console text all blurry */ #-webkit-web-inspector .console-group-messages { /*text-shadow: 0 0 3px rgba(0,0,0,.5) !important;*/ } #-webkit-web-inspector .console-error-level .console-message-text, #-webkit-web-inspector .console-error-level .section .header .title { /*text-shadow: 0 0 3px rgba(255,0,0,.5) !important;*/ } #-webkit-web-inspector .console-user-command > .console-message-text { /*text-shadow: 0 0 3px rgba(0,128,255,.5) !important;*/ } #-webkit-web-inspector .console-group-messages, #-webkit-web-inspector .console-user-command > .console-message-text, #-webkit-web-inspector .console-formatted-null, #-webkit-web-inspector .console-formatted-undefined, #-webkit-web-inspector .console-debug-level .console-message-text, #-webkit-web-inspector .console-error-level .console-message-text, #-webkit-web-inspector .console-error-level .section .header .title, #-webkit-web-inspector .console-group-messages .section .header .title, #-webkit-web-inspector .console-formatted-object, #-webkit-web-inspector .console-formatted-node, #-webkit-web-inspector .console-formatted-array, #-webkit-web-inspector .section .properties .name, #-webkit-web-inspector .event-properties .name, #-webkit-web-inspector .console-formatted-object .name, #-webkit-web-inspector .console-formatted-number, #-webkit-web-inspector .console-formatted-string, #-webkit-web-inspector #console-messages a { /*color: transparent !important;*/ } /* HTML PRIDE! */ html { /*-webkit-animation: rainbow 8s infinite;*/ } /* Make every website fall over! */ /* html, body { height: 100%; } html { -webkit-perspective: 1000; } body { -webkit-transform-origin: bottom center; -webkit-transform: rotateX(-90deg); -webkit-animation: fall 1.5s ease-in; } */ /* Insert a phrase every paragraph */ /* p:before { content: "YOLO "; } */ /* Animations */ @-webkit-keyframes blur { 0% { -webkit-filter: blur(0px); } 49% { -webkit-filter: blur(0px); } 50% { -webkit-filter: blur(1px); } 51% { -webkit-filter: blur(0px); } 100% { -webkit-filter: blur(0px); } } @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); } } @-webkit-keyframes rainbow { 100% { -webkit-filter: hue-rotate(360deg); } } @-webkit-keyframes fall { 0% { -webkit-transform: none; } 100% { -webkit-transform: rotateX(-90deg); } } |
如果各位还有其他极客式恶搞方法,请在评论中留言吧~
/* 再次声明:恶搞带来的所有后果(比如重装浏览器、重装系统、影响工作效率等),请恶搞者自行负责。伯乐在线不承担任何责任。/
整理:伯乐在线-黄利民
文章链接:http://blog.jobbole.com/37214/
【非特殊说明,转载必须在正文中标注并保留原文链接、译文链接、译者和作者等信息,谢谢合作!】
最新评论
我只用来修改滚动条过。。。
话说。。个人博客。。在愚人节也可以弄下这效果。。反正只对谷歌浏览器内核有效。。哈哈
赞
只对谷歌浏览器有效,你搞笑呢???????火狐、opera都是干嘛的
赞
改一下前缀就都适用咯
赞
这是chrome的Css,对其他的浏览器没用吧
赞
webkit 内核的浏览器,应该都有效。
赞
用扣肉的优越感……当然,webkit前缀只有webkit内核支持,无异议。
赞
挺好玩的,转了
赞
不错
赞
这些老外也真够蛋疼的。
赞
修改支付宝余额,显示5000000 截图炫耀 哈哈哈
赞
根本不行啊。。。WIN7的系统 设置的不行。。。。
赞
是啊,win7的css保存不了啊
赞
win7的怎么改,css保存不了啊
赞
太有趣了!
赞
一看到满屏幕的代码我就头疼……
赞
body {
display:none;
}
赞