为什么我的字体图标出不来?

来源:2-5 导航页背影动画制作(@font-face实现小icon)

oldfu

2015-04-22 15:37

@font-face{
    font-family: "Raphaelicons";
    src:url("fonts/raphaelicons-webfont.eot") format('eot'),
        url("fonts/raphaelicons-webfont.ttf") format('truetype'),
        url("fonts/raphaelicons-webfont.woff") format('woff'),
        url("fonts/raphaelicons-webfont.svg") format('svg');
    font-weight: normal;
    font-style: normal;
}
[data-icon]:after{
    content:attr(data-icon);
    width: 200px;
    height: 200px;
    color: #fff;
    font-size: 90px;
    text-align: center;
    line-height: 200px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -100px 0 0 -100px;
    -webkit-transform:rotate(-45deg) translateY(25%) ;
    -moz-transform:rotate(-45deg) translateY(25%) ;
    -ms-transform:rotate(-45deg) translateY(25%) ;
    -o-transform:rotate(-45deg) translateY(25%) ;
    transform:rotate(-45deg) translateY(25%) ;
    font-family: "Raphaelicons";
    text-shadow: 1px 1px 1px rgb(151,24,64,0.2);
}
写回答 关注

2回答

  • ForCoding
    2015-05-20 13:30:51

    怎么看这些字体对应的数字或字母

  • 哆哆若
    2015-04-24 18:02:23

    src:url("fonts/raphaelicons-webfont.eot") format('eot'),

            url("fonts/raphaelicons-webfont.ttf") format('truetype'),

            url("fonts/raphaelicons-webfont.woff") format('woff'),

            url("fonts/raphaelicons-webfont.svg") format('svg');

    路径问题,改成相对路径src:url(../fonts/raphaelicons-webfont.eot) format('eot')

css3实现网页平滑过渡效果

CSS3 打造页面之间的平滑过渡效果,带来神奇的体验

54371 学习 · 372 问题

查看课程

相似问题