荟萃馆

位置:首页 > 设计 > 网页设计

CSS3制作炫酷的自定义发光文字

导语:CSS3制作炫酷的自定义发光文字。本文为大家分享一款基于纯CSS3的文字发光特效,当我们将鼠标滑过文字时,文字就会模拟发光动画,展现出非常酷的发光画面。另外,由于引用了特殊字体,所以整个文字效果看起来有着3D立体的特效,如果你的网络无法加载这些字体,可能是由于国外的这个网站被墙的'缘故,就像google的字体库网址被屏蔽那样。

CSS3制作炫酷的自定义发光文字

  HTML代码

XML/HTML Code复制内容到剪贴板

<p id="container">

<p><a href="#">

RED

</a></p>

<p><a href="#">

BLUE

</a></p>

<p><a href="#">

Yellow

</a></p>

<p><a href="#">

GREEN

</a></p>

<p><a href="#">

ORANGE

</a></p>

<p><a href="#">

VIOLET

</a></p>

</p>

CSS代码

CSS Code复制内容到剪贴板

/*setup*/

*{

margin: 0;

padding: 0;

}

@font-face {

font-family: 'Monoton';

font-style: normal;

font-weight: 400;

src: local('Monoton'), local('Monoton-Regular'), url(_) format('woff');

}

@font-face {

font-family: 'Iceland';

font-style: normal;

font-weight: 400;

src: local('Iceland'), local('Iceland-Regular'), url() format('woff');

}

@font-face {

font-family: 'Pacifico';

font-style: normal;

font-weight: 400;

src: local('Pacifico Regular'), local('Pacifico-Regular'), url(_) format('woff');

}

@font-face {

font-family: 'PressStart';

font-style: normal;

font-weight: 400;

src: local('Press Start 2P'), local('PressStart2P-Regular'), url(_) format('woff');

}

@font-face {

font-family: 'Audiowide';

font-style: normal;

font-weight: 400;

src: local('Audiowide'), local('Audiowide-Regular'), url() format('woff');

}

@font-face {

font-family: 'Vampiro One';

font-style: normal;

font-weight: 400;

src: local('Vampiro One'), local('VampiroOne-Regular'), url(_) format('woff');

}

body{

background-color: #222222;

}

#container{

margin:auto;

}

/*neeeeoooon*/

p{

text-align:center;

font-size:7em;

margin:20px 0 20px 0;

}

a{

text-decoration:none;

-webkit-transition: all 0.5s;

-moz-transition: all 0.5s;

transition: all 0.5s;

}

p:nth-child(1) a{

color:#FF1177;

font-family:Monoton;

}

p:nth-child(1) a:hover{

-webkit-animation: neon1 1.5s ease-in-out infinite alternate;

-moz-animation: neon1 1.5s ease-in-out infinite alternate;

animation: neon1 1.5s ease-in-out infinite alternate;

}

p:nth-child(2) a{

font-size:1.5em;

color:#228DFF;

font-family:Iceland;

}

p:nth-child(2) a:hover{

-webkit-animation: neon2 1.5s ease-in-out infinite alternate;

-moz-animation: neon2 1.5s ease-in-out infinite alternate;

animation: neon2 1.5s ease-in-out infinite alternate;

}

p:nth-child(3) a{

color:#FFDD1B;

font-family:Pacifico;

}

p:nth-child(3) a:hover{

-webkit-animation: neon3 1.5s ease-in-out infinite alternate;

-moz-animation: neon3 1.5s ease-in-out infinite alternate;

animation: neon3 1.5s ease-in-out infinite alternate;

}

p:nth-child(4) a{

color:#B6FF00;

font-family:PressStart;

font-size:0.8em;

}

p:nth-child(4) a:hover{

-webkit-animation: neon4 1.5s ease-in-out infinite alternate;

-moz-animation: neon4 1.5s ease-in-out infinite alternate;

animation: neon4 1.5s ease-in-out infinite alternate;

}

p:nth-child(5) a{

color:#FF9900;

font-family:Audiowide;

}

p:nth-child(5) a:hover{

-webkit-animation: neon5 1.5s ease-in-out infinite alternate;

-moz-animation: neon5 1.5s ease-in-out infinite alternate;

animation: neon5 1.5s ease-in-out infinite alternate;

}

p:nth-child(6) a{

color:#BA01FF;

font-family:Vampiro One;

}

p:nth-child(6) a:hover{

-webkit-animation: neon6 1.5s ease-in-out infinite alternate;

-moz-animation: neon6 1.5s ease-in-out infinite alternate;

animation: neon6 1.5s ease-in-out infinite alternate;

}

p a:hover{

color:#ffffff;

}

/*glow for webkit*/

@-webkit-keyframes neon1 {

from {

text-shadow: 0 0 10px #fff,

0 0 20px #fff,

0 0 30px #fff,

0 0 40px #FF1177,

0 0 70px #FF1177,

0 0 80px #FF1177,

0 0 100px #FF1177,

0 0 150px #FF1177;

}

to {

标签:自定义 CSS3 发光