Last active
August 29, 2015 14:03
-
-
Save hjzheng/72a3c28d379e627aa812 to your computer and use it in GitHub Desktop.
CSS3 文字阴影
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CSS3文字阴影 | |
text-shadow:x y blur color, … | |
参数 | |
x 横向偏移 | |
y 纵向偏移 | |
blur 模糊距离 | |
color 阴影颜色 | |
文本阴影如果加很多层,会很卡很卡很卡 | |
http://jsfiddle.net/hjzheng/Khhx7/ | |
几个好玩的例子 | |
层叠: | |
color: red; | |
font-size: 100px; | |
font-weight: bold; | |
text-shadow: 2px 2px 0px white, 4px 4px 0px red; | |
光晕: | |
color: white; | |
font-size: 100px; | |
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #ff00de, 0 0 70px #ff00de, 0 0 80px #ff00de, 0 0 100px #ff00de, 0 0 150px #ff00de; | |
火焰文字: | |
text-shadow: 0 0 20px #fefcc9, 10px -10px 30px #feec85, -20px -20px 40px #ffae34, 20px -40px 50px #ec760c, -20px -60px 60px #cd4606, 0 -80px 70px #973716, 10px -90px 80px #451b0e; | |
font-family: Verdana, Geneva, sans-serif; | |
font-size: 100px; | |
font-weight: bold; | |
color: white; | |
http://jsfiddle.net/hjzheng/xJBU4/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment