美文网首页前端前端开发Web 前端开发
css实现漂亮的大标题文字效果

css实现漂亮的大标题文字效果

作者: 花花0825 | 来源:发表于2017-02-09 14:30 被阅读421次

    在移动端中尽量减少图片的使用,使用图片太多的话会影响网页打开的速度,使用在一些标题中可以使用css来设置一下阴影啊,边框啊等等来做一些好看的效果。

    今天学习了几个很好玩又挺好看的样式效果


    第一个:纯css制作的复古风格的大标题

    复古风格

    html:

    <h1 class="title1">cherish花花</h1>

    css:

    .title1{

           background: #EEE url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAIAAAAmkwkpAAAAHklEQVQImWNkYGBgYGD4//8/A5wF5SBYyAr+//8PAPOCFO0Q2zq7AAAAAElFTkSuQmCC) repeat;

             text-shadow: 3px -3px black, 2px -2px white;

             font-weight: bold;

             -webkit-text-fill-color: transparent;

             -webkit-background-clip: text;

    }


    第二个:css空心文字

    空心风格

    html:

    <h1 class="title2"></h1>

    css:

    .title2{

            color: transparent;

            -webkit-text-stroke: 1px black;

            letter-spacing: 0.04em;

    }


    第三个:css内阴影文字效果

    内阴影风格

    html:

    <h1 class="title3"></h1>

    css:

    .title3{

           color: transparent;

           background-color : black;

           text-shadow : rgba(255,255,255,0.5) 0 5px 6px, rgba(255,255,255,0.2) 1px 3px 3px;

           -webkit-background-clip : text;

    }


    第四个:3d感文字

    3d感文字

    html:

    <h1 class="title4"><h1>

    css:

    .title4{

         color: #fafafa;

         letter-spacing: 0;

         text-shadow: 0px 1px 0px #999, 0px 2px 0px #888, 0px 3px 0px #777, 0px 4px 0px #666, 0px 5px 0px #555, 0px 6px 0px #444, 0px 7px 0px #333, 0px 8px 7px #001135;

    }

    相关文章

      网友评论

        本文标题:css实现漂亮的大标题文字效果

        本文链接:https://www.haomeiwen.com/subject/hzbiittx.html