在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
在 CSS 中,文字算是我们天天会打交道的一大类了,有了文字,则必不可少一些文字装饰。 本文将讲讲两个比较新的文字装饰的概念 text-decoration 文字装饰
p { text-decoration: underline; } 而到了比较新的 CSS Text Decoration Module Level 3 - text-decoration, 其中:
这里有张非常好的图,帮助大家快速理解: CodePen Demo -- Text-decoration Demo text-decoration-line 可以同时设置 有意思的一点是, p { text-decoration-line: overline underline line-through; } 我们可以得到上中下三条线。 text-decoration 可以进行过渡与动画 text-decoration 的每个值都是可以进行过渡与动画的。合理利用,在一些文本强调的地方,非常有用。 <p class="transition">Lorem ipsum dolor</p> .transition { text-decoration-line: underline; text-decoration-color: transparent; text-decoration-thickness: 0.1em; cursor: pointer; transition: .5s; &:hover { text-decoration-color: pink; text-decoration-thickness: 0.15em; color: pink; } } 配合另外一个属性 当然,上述的例子中使用了 text-decoration-color 与 color 分离
.color { text-decoration-style: wavy; cursor: pointer; transition: .5s; &:hover { color: transparent; text-decoration-color: pink; } } 有意思,经过这样,我们其实得到了一条波浪线。 如果我们把 <p class="animation" data-content="Lorem ibsum dolor Lorem ibsum dolor">Lorem ibsum dolor</p> .animation { position: relative; text-decoration: none; overflow: hidden; cursor: pointer; line-height: 2; &::before { content: attr(data-content); position: absolute; top: 0; left: 0; color: transparent; white-space: nowrap; text-decoration-line: underline; text-decoration-style: wavy; text-decoration-color: #000; z-index: -1; } &:hover::before { animation: move 3s infinite linear; } } @keyframes move { 100% { transform: translate(-209px, 0); } } 我们利用伪元素添加了一段长于文本本身的文本,并且颜色为透明,但是设置了波浪线的颜色,然后 hover 的时候,通过运动伪元素的 CodePen Demo -- text-decoration Demo text-emphasis 文字强调
在早些时候,我们如果要强调几个字,可能更多是使用加粗,斜体这种较为常规的文字样式类型: { font-weight: bold; // 加粗 font-style: italic; // 斜体 } 现在,多了一种有意思的强调方式 -- text-emphasis 语法text-emphasis 包含了 看个简单的 Demo: <p> This is <span>Text-emphasis</span>. </p> p span{ text-emphasis: circle; }
当然,默认是黑色的,我们可以在 circle 后面补充颜色: p span{ text-emphasis: circle #f00; } 除了 <p> A B C D <span class="keyword">E F</span> G H <span class="word">I J</span> K L <span class="emoji">M N</span> </p> .keyword { text-emphasis: circle #f00; } .word { text-emphasis: 'x' blue; } .emoji { text-emphasis: '😋'; } text-emphasis-position 语法除了在文字上方,还可以在一定范围内改变强调图形的位置,选择放置在文字的上方或者下方,利用 这个属性接受上下与左右两个参数:
.keyword { text-emphasis: circle #f00; } .word { text-emphasis: 'x' blue; text-position: over left; } .emoji { text-emphasis: '😋'; text-position: under left; } 当文字的排版的书写顺序是水平排版布局,类似 p { writing-mode: vertical-rl; } .keyword { text-emphasis: circle #f00; } .word { text-emphasis: 'x' blue; text-position: over left; } .emoji { text-emphasis: '😋'; text-position: under right; } 使用 background 模拟下划线除了 CSS 原生提供的 最常见的莫过于使用 看个简单的 DEMO,使用 <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. <a>Mollitia nostrum placeat consequatur deserunt velit ducimus possimus commodi temporibus debitis quam</a>, molestiae laboriosam sit repellendus sed sapiente quidem quod accusantium vero.</p> p { width: 600px; font-size: 24px; color: #666; } a { background: linear-gradient(90deg, #0cc, #0cc); background-size: 100% 3px; background-repeat: no-repeat; background-position: 100% 100%; color: #0cc; } 使用 又或者,使用 a { background: linear-gradient(90deg, #0cc 50%, transparent 50%, transparent 1px); background-size: 10px 2px; background-repeat: repeat-x; background-position: 100% 100%; } CodePen Demo -- 使用 background 模拟下划线与虚线下划线 当然这个是最基础的,巧妙的运用 巧妙改变 这里,通过巧妙改变 先看这样一个 Demo,核心代码作用于被 <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. <a>Mollitia nostrum placeat consequatur deserunt velit ducimus possimus commodi temporibus debitis quam</a>, molestiae laboriosam sit repellendus sed sapiente quidem quod accusantium vero.</p> a { background: linear-gradient(90deg, #ff3c41, #fc0, #0ebeff); background-size: 0 3px; background-repeat: no-repeat; background-position: 0 100%; transition: 1s all; color: #0cc; } a:hover { background-size: 100% 3px; color: #000; } 我们虽然,设定了 看看最后的效果: 由于设定的 // 其他都保持一致,只改变 background-position,从 0 100% 改为 100% 100% a { ... background-position: 100% 100%; ... } 再看看效果,你可以对比着上面的动图看看具体的差异点在哪: CodePen Demo -- background underline animation OK,如果我们使用 CSS 代码示意,注意看两条使用 background 模拟的下划线的 a { background: linear-gradient(90deg, #0cc, #0cc), linear-gradient(90deg, #ff3c41, #fc0, #8500d8); background-size: 100% 3px, 0 3px; background-repeat: no-repeat; background-position: 100% 100%, 0 100%; transition: 0.5s all; color: #0cc; } a:hover { background-size: 0 3px, 100% 3px; color: #000; } 可以得到这样一种效果,其实每次 hover, 都有两条下划线在移动: CodePen Demo -- background underline animation 最后好了,本文到此结束,介绍了关于文字装饰的一些有意思的属性及动效,希望对你有帮助 😃 更多精彩 CSS 技术文章汇总在我的 Github -- iCSS ,持续更新,欢迎点个 star 订阅收藏。 到此这篇关于详解CSS 文字装饰 text-decoration & text-emphasis的文章就介绍到这了,更多相关CSS 文字装饰内容请搜索极客世界以前的文章或继续浏览下面的相关文章,希望大家以后多多支持极客世界! |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论