在 CSS 中使用 :after 和 :before
HTML
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Photos</a></li>
<li><a href="#">Paintings</a></li>
</ul>
CSS
body{background:black}
li a{
white-space: nowrap;
color: transparent;
display: block;
text-transform: uppercase;
text-align: center;
text-shadow: 0px 0px 0px #fff;
letter-spacing: 1px;
-moz-transform: scale(0.5);
-ms-transform: scale(0.5);
-o-transform: scale(0.5);
-webkit-transform: scale(0.5);
transform: scale(0.5);
-webkit-transition: all 0.6s linear;
-moz-transition: all 0.6s linear;
-o-transition: all 0.6s linear;
-ms-transition: all 0.6s linear;
transition: all 0.6s linear; text-decoration:none
}
li a:hover{
text-shadow: 0px 0px 1px #fff;
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
-webkit-transform: scale(1);
transform: scale(1);
text-decoration:none
}
li a:hover:before{content:"<"}
li a:hover:after{content:">"}
演示
但这不支持 IE,但适用于现代浏览器。
答案 2
好吧,我浏览了您所指的网站,发现它是由纯 css 制成的(css 中使用了 2 个图像)。找到下面的 Demo(CSS 很长,这里就不贴了)
现场演示 2