CSS
CSS 大约有两百个属性。很多属性都是相互关联的,理清楚每一个属性细节是不可能的。所以,本文分享一些有用的 CSS 小技巧,方便开发者和设计师参考。

1、打字效果

10 个不错的 CSS 小技巧 - 图1
网页设计变得越来越有创意。在 CSS 动画的协调下,网页会像活的一样。在这个例子中,将使用 animation@keyframes 属性去实现打字效果。
具体来说,在这个演示中,通过 steps() 属性来实现分割文本的效果。首先,必须指定 step() 中传入的数量,在这个例子中就是文本的长度。
接着,第二步,使用 @keyframes 去声明什么时候开始执行动画。
如果在文本 Typing effect for text 后面添加内容,而不改变 step() 中的数字,将不会产生这种效果。
这种效果并不是特别新鲜。然而,很多开发者却使用 JavaScript 库去实现,而不是使用 CSS。

  1. <div class="typing">
  2. <div class="typing-effect">Typing effect for text</div>
  3. </div>
  1. .typing {
  2. height: 80vh;
  3. display: flex;
  4. align-items: center;
  5. justify-content: center;
  6. }
  7. .typing-effect {
  8. width: 22ch;
  9. white-space: nowrap;
  10. overflow: hidden;
  11. border-right: 3px solid;
  12. font-family: monospace;
  13. font-size: 2em;
  14. animation: typing 2s steps(22), effect .5s step-end infinite alternate;
  15. }
  16. @keyframes typing {
  17. from {
  18. width: 0;
  19. }
  20. }
  21. @keyframes effect {
  22. 50% {
  23. border-color: transparent;
  24. }
  25. }

2、透明图片阴影效果

10 个不错的 CSS 小技巧 - 图2
是否使用过 box-shadow 为透明的图片添加阴影,却让其看起来像添加了一个边框一样?然而解决方案是使用 drop-shadow。
drop-shadow 的工作方式是,其遵循给给定图片的 Alpha 通道。因此阴影是基于图片的内部形状,而不是显示在图片外面。

  1. <div class="transparent-shadow">
  2. <div class="margin-right">
  3. <div class="margin-bottom align-center">
  4. box-shadow
  5. </div>
  6. <img class="box-shadow" src="https://stackdiary.com/wp-content/uploads/2022/02/logo.png" alt="box-shadow example (transparent)">
  7. </div>
  8. <div>
  9. <div class="margin-bottom align-center">
  10. drop-shadow
  11. </div>
  12. <img class="drop-shadow" src="https://stackdiary.com/wp-content/uploads/2022/02/logo.png" alt="drop-shadow example (transparent)">
  13. </div>
  14. </div>
  1. .transparent-shadow {
  2. height: 80vh;
  3. display: flex;
  4. align-items: center;
  5. justify-content: center;
  6. }
  7. .margin-right {
  8. margin-right: 2em;
  9. }
  10. .margin-bottom {
  11. margin-bottom: 1em;
  12. }
  13. .align-center {
  14. text-align: center;
  15. }
  16. .box-shadow {
  17. box-shadow: 2px 4px 8px #3723a1;
  18. }
  19. .drop-shadow {
  20. filter: drop-shadow(2px 4px 8px #3723a1);
  21. }

3、自定义 Cursor

10 个不错的 CSS 小技巧 - 图3
不需要强迫站点访问者使用独特的光标。至少,不是出于用户体验的目的。不过,关于 cursor 属性要说明的是,它可以展示图片,这相当于以照片的格式显示提示信息。
一些用户案例,包括比较两个不同的照片,无需在视图窗口渲染这些照片。比如:cursor 属性可以用在设计中,节省空间。因为可以在特定的 div 元素中锁定特定的光标,所以在此 div 这外可以无效。
目前尝试对图片的大小有限制,读者可以自行更改验证

  1. <div class="custom-cursor">
  2. <div class="card">
  3. Default
  4. </div>
  5. <div class="card card-image-cursor">
  6. Image
  7. </div>
  8. <div class="card card-emoji-cursor">
  9. Emoji
  10. </div>
  11. </div>
  1. .custom-cursor {
  2. display: flex;
  3. height: 80vh;
  4. align-items: center;
  5. justify-content: center;
  6. background: #f3f3f3;
  7. padding: 0 10px;
  8. }
  9. .card {
  10. width: 200px;
  11. height: 200px;display: flex;
  12. align-items: center;
  13. justify-content: center;
  14. background-color: #D29A5A;
  15. margin-right: 10px;color: #fff;
  16. font-size: 1.4em;
  17. text-align: center;
  18. }
  19. .card-image-cursor {
  20. background-color: #D11A5A;
  21. cursor: url("https://p1-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/0ac1d8cb2b1b46a384e986a7461df26a~tplv-k3u1fbpfcp-watermark.image?"), auto;
  22. }
  23. .card-emoji-cursor {
  24. background-color: #D29B22;
  25. cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>🚀</text></svg>"), auto;
  26. }

4、使用 attr() 展示 tooltip

10 个不错的 CSS 小技巧 - 图4
attr() 属性是最近发现的,且是最得意的发现。本打算为站点添加 tooltip 的功能,但是发现需要引入一个插件,这就引入了不必要的东西,让站点看起来臃肿。感谢的是,可以使用 attr() 来避免这种情况。
attr() 属性工作的方式很简单,逐步解析一下:
使用 tooltip class 去标志哪个元素需要展示 tooltip 信息。然后为该元素添加喜欢的样式,这个方便演示,使用了 dotted border-bottom 的样式。
接下来,创建一个 :before 伪元素,它将包含内容 content,指向特定的 attr()。这里指 attr(tooltip-data)
接着,会创建一个 :hover 伪类,当用户鼠标移动道元素上时,它将设置 opacity 为 1。
此外,可以包含自定义的样式。这取决于设定的 tooltp 的数据,也许需要调整其宽度或者边距。一旦设定了 tooptip-data arrt() 类,可以在设计的其他部分应用。

  1. <h1>
  2. HTML/CSS tooltip
  3. </h1>
  4. <p>
  5. Hover <span class="tooltip" tooltip-data="Tooltip Content">Here</span> to see the tooltip.
  6. </p>
  7. <p>
  8. You can also hover <span class="tooltip" tooltip-data="This is another Tooltip Content">here</span> to see another example.
  9. </p>
  1. .tooltip {
  2. position: relative;
  3. border-bottom: 1px dotted black;
  4. }
  5. .tooltip:before {
  6. content: attr(tooltip-data);
  7. position: absolute;
  8. width: 250px;
  9. background-color: #efba93;
  10. color: #fff;
  11. text-align: center;
  12. padding: 15px;
  13. line-height: 1.1;
  14. border-radius: 5px;
  15. z-index: 1;
  16. opacity: 0;
  17. transition: opacity .5s;
  18. bottom: 125%;
  19. left: 50%;
  20. margin-left: -60px;
  21. font-size: 0.70em;
  22. visibility: hidden;
  23. }
  24. .tooltip:after {
  25. content: "";
  26. position: absolute;
  27. bottom: 75%;
  28. left: 50%;
  29. margin-left: -5px;
  30. border-width: 5px;
  31. border-style: solid;
  32. opacity: 0;
  33. transition: opacity .5s;
  34. border-color: #000 transparent transparent transparent;
  35. visibility: hidden;
  36. }
  37. .tooltip:hover:before,
  38. .tooltip:hover:after {
  39. opacity: 1;
  40. visibility: visible;
  41. }

5、纯 CSS 实现核算清单

10 个不错的 CSS 小技巧 - 图5
正如开头所说的,CSS 正逐步成熟。这个动态清单的演示就是一个很好的例子。
使用 checkbox 输入类型,加上一个 :checked 伪类。当 :checked 返回 true 的情况时,使用 transform 属性更改状态。
可以使用这种方法实现各种目标。比如,当用户点点击指定的复选框时候,切花到隐藏其内容。在输入 input 类型的单选和复选框使用,当然,这也可以应用到 <option><select> 元素。

  1. <div class="checklist">
  2. <h2>Item Checklist with CSS</h2>
  3. <label>
  4. <input type="checkbox" name="" id="" />
  5. <i></i>
  6. <span>Item #1</span>
  7. </label>
  8. <label>
  9. <input type="checkbox" name="" id="" />
  10. <i></i>
  11. <span>Item #2</span>
  12. </label>
  13. <label>
  14. <input type="checkbox" name="" id="" />
  15. <i></i>
  16. <span>Item #3</span>
  17. </label>
  18. </div>
  1. .checklist {
  2. padding: 50px;
  3. position: relative;
  4. background: #043b3e;
  5. border-top: 50px solid #03a2f4;
  6. }
  7. .checklist h2 {
  8. color: #f3f3f3;
  9. font-size: 25px;
  10. padding: 10px 0;
  11. margin-left: 10px;
  12. display: inline-block;
  13. border-bottom: 4px solid #f3f3f3;
  14. }
  15. .checklist label {
  16. position: relative;
  17. display: block;
  18. margin: 40px 0;
  19. color: #fff;
  20. font-size: 24px;
  21. cursor: pointer;
  22. }
  23. .checklist input[type="checkbox"] {
  24. -webkit-appearance: none;
  25. }
  26. .checklist i {
  27. position: absolute;
  28. top: 2px;
  29. display: inline-block;
  30. width: 25px;
  31. height: 25px;
  32. border: 2px solid #fff;
  33. }
  34. .checklist input[type="checkbox"]:checked ~ i {
  35. top: 1px;
  36. height: 15px;
  37. width: 25px;
  38. border-top: none;
  39. border-right: none;
  40. transform: rotate(-45deg);
  41. }
  42. .checklist span {
  43. position: relative;
  44. left: 40px;
  45. transition: 0.5s;
  46. }
  47. .checklist span:before {
  48. content: '';
  49. position: absolute;
  50. top: 50%;
  51. left: 0;
  52. width: 100%;
  53. height: 1px;
  54. background: #fff;
  55. transform: translateY(-50%) scaleX(0);
  56. transform-origin: left;
  57. transition: transform 0.5s;
  58. }
  59. .checklist input[type="checkbox"]:checked ~ span:before {
  60. transform: translateY(-50%) scaleX(1);
  61. transform-origin: right;
  62. transition: transform 0.5s;
  63. }
  64. .checklist input[type="checkbox"]:checked ~ span {
  65. color: #154e6b;
  66. }

6、使用 :is():where() 添加元素样式

10 个不错的 CSS 小技巧 - 图6
现代 CSS 框架运行的一种方式是通过使用条件逻辑选择器。换言之,:is():where() 属性可以用于同时设置多种设计元素的样式。但是,更重要的是,可以使用这些属性去查询需单独处理的元素。
下面的 CSS 片段是一个小案例,可以通过 MDN 学习更多关于 :is():where() 的内容。

  1. <h2 class="content-title">Header 2 <b>content title</span></h2>
  1. /* this query will select the b element within a heading and change its color. */
  2. :where(h2,h3,h4) > b {
  3. color: blue;
  4. }
  5. :is(h2):where(.content-title) {
  6. text-transform: uppercase;
  7. }

7、使用关键帧实现手风琴下拉效果

10 个不错的 CSS 小技巧 - 图7
JavaScript 库,比如 jQuery, Cash 等,即使想使用一个简单的缩放功能,都要整个引入。幸运的是,很多 CSS 技巧能够避免这种引入。比如下面的手风琴片段代码。
如果认真看下当下 web 设计的趋势,会发现在登陆页面就会发现手风琴这种设计效果。这是一种简缩内容的方式,以节省设计空间。常见问题解答,产品功能,使用提示等功能,都可以放在手风琴内实现。下面是纯 CSS 代码片段对其的实践。

  1. <main>
  2. <details open>
  3. <summary>Accordion Tab #1</summary>
  4. <div class="tab-content">
  5. <p>your text goes here</p>
  6. </div>
  7. </details>
  8. <details>
  9. <summary>Accordion Tab #2</summary>
  10. <div class="tab-content">
  11. <p>your text goes here</p>
  12. </div>
  13. </details>
  14. <details>
  15. <summary>Accordion Tab #3</summary>
  16. <div class="tab-content">
  17. <p>your text goes here</p>
  18. </div>
  19. </details>
  20. </main>
  1. /* .tab-content can be styled as you like */
  2. main {
  3. max-width: 400px;
  4. margin: 0 auto;
  5. }
  6. p {
  7. text-align: justify;
  8. font-family: monospace;
  9. font-size: 13px;
  10. }
  11. summary {
  12. font-size: 1rem;
  13. font-weight: 600;
  14. background-color: #f3f3f3;
  15. color: #000;
  16. padding: 1rem;
  17. margin-bottom: 1rem;
  18. outline: none;
  19. border-radius: 0.25rem;
  20. cursor: pointer;
  21. position: relative;
  22. }
  23. details[open] summary ~ * {
  24. animation: sweep .5s ease-in-out;
  25. }
  26. @keyframes sweep {
  27. 0% {opacity: 0; margin-top: -10px}
  28. 100% {opacity: 1; margin-top: 0px}
  29. }
  30. details > summary::after {
  31. position: absolute;
  32. content: "+";
  33. right: 20px;
  34. }
  35. details[open] > summary::after {
  36. position: absolute;
  37. content: "-";
  38. right: 20px;
  39. }
  40. details > summary::-webkit-details-marker {
  41. display: none;
  42. }

8、侧边栏的 Hover 效果

10 个不错的 CSS 小技巧 - 图8
有没有可以使用 CSS 就可以实现一个动态 Hover 效果的侧边栏呢?当然,这得多亏 transform 和 :hover 属性。
为了兼容性,在多种移动端中进行测试,感觉还不错。虽然这种效果在桌面中使用比在移动端中使用顺畅。在这个练习案例中,使用 position: sticky; 创建一个吸附的侧边栏,其工作的效果良好。

  1. <div class="css-dynamic-sidebar">
  2. <nav>
  3. <a class="" href="#">Menu #1</a>
  4. <a class="" href="#">Menu #2</a>
  5. <a class="" href="#">Menu #3</a>
  6. </nav>
  7. <div class="site-content">
  8. <p>Hover over the sidebar</p>
  9. <p>Also work with Tab selector (for accessibility)</p>
  10. </div>
  11. </div>
  1. .css-dynamic-sidebar {
  2. overflow: hidden;
  3. position: relative;
  4. height: 15em;
  5. max-width: 15em;
  6. margin: auto;
  7. }
  8. .site-content {
  9. margin: auto;
  10. }
  11. nav {
  12. display: flex;
  13. flex-direction: column;
  14. position: absolute;
  15. right: 100%;
  16. padding: 1em;
  17. background-color: #f3f3f3;
  18. transform: translateX(1em);
  19. transition: 0.2s transform;
  20. }
  21. nav:hover,
  22. nav:focus-within {
  23. transform: translateX(100%);
  24. }
  25. a {
  26. white-space: pre;
  27. color: black;
  28. }
  29. p {
  30. font-size: 2em;
  31. font-family: monospace;
  32. text-align: center;
  33. }

9、使用 first-letter 实现首字母大写

10 个不错的 CSS 小技巧 - 图9
在 CSS 中,可以选择确定的 first-of-type 元素。在这个例子中,使用 ::first-letter 伪类去实现首字母大写的效果。这个类可以让我们更自由的添加样式。所以,可以调整大写字母的样式以符合站点设计风格。
说到这个属性,可以使用它干很多事。当特定元素在页面中第一次出现,可以使用 first-of-type 单独进行添加样式。但是,正如下面代码展示,尽管元素已经出现过,依然可以使用在多个元素上。

  1. <div class="content-section">
  2. <p>here we target the wrapper and select the p element. then append first-of-type and target first-letter specifically. you can then reuse the same option in other parts of your design by changing the wrapper variable</p>
  3. </div>
  1. .content-section p:first-of-type::first-letter {
  2. color: #f3f3f3;
  3. float: left;
  4. font-size: 4rem;
  5. line-height: 4vw;
  6. padding-right: 8px;
  7. /* border: 0.25em double; */
  8. }

10、使用 ::before 添加按钮的图标

10 个不错的 CSS 小技巧 - 图10
每当需要链接到外部其他资源的时候,都会使用自定义的按钮来实现。准确来说,是一个添加图标的按钮。简单的谷歌搜索,会发现很多 button generators ,但是对可以随时使用的通用解决方案更感兴趣。
所以,为了实现这个目标,为特定按钮创建了一个 :before 伪元素。需要声明的是,代码片段中的 content:"\0000a0";&nbsp; 的 Unicode 转义。
可以通过宽高属性来调整图标的尺寸,以更好适应按钮样式。

  1. <div class="card">
  2. <div class="card-body">
  3. <a href="" target="_blank" class="btn btn-docu" rel="noopener">Documentation</a>
  4. </div>
  5. </div>
  1. .card .card-body .btn {
  2. display: block;
  3. width: 200px;
  4. height: 48px;
  5. line-height: 48px;
  6. background-color: blue;
  7. border-radius: 4px;
  8. text-align: center;
  9. color: #fff;
  10. font-weight: 700;
  11. }
  12. .card .card-body .btn-docu:before {
  13. content:"\0000a0";
  14. display:inline-flex;
  15. height:24px;
  16. width:24px;
  17. line-height:24px;
  18. margin:0px 10px 0px 0px;
  19. position:relative;
  20. top:0px;
  21. left:0px;
  22. background:url(https://stackdiary.com/docu.svg) no-repeat left center transparent;
  23. background-size:100% 100%;
  24. }

最重要的一点,这些 CSS 技巧凸显了不使用 JavaScript 来实现功能的潜力。可以使用上面这些小技巧,应用在设计上。事实上,很多这样的例子可以混合使用,以创作自由风格的设计。
当然,这还需要更大的进步空间。不建议单纯的这些小技巧就低估了框架和库的使用。。
但是,不需要写冗长的 JavaScript 函数,通过 CSS 来实现设计的效果正走在路上。