簡體   English   中英

Css animation - 水平線上有垂直線

[英]Css animation - with vertical line on a horizontal line

演示鏈接所示,我在 css 中有一條擴展線 animation

當 animation 停止時,我想知道如何在兩端添加一條垂直線。

類似於附圖: 在此處輸入圖像描述

有人可以幫我嗎?

也許使用偽元素

.line::before,
.line::after
{
  content: ''; /* important for pseudo elements */
  width: 4px;
  height: 20px;
  position: absolute;
  background: red;
}
.line::after { right: 0 } /* snap to right */
.line::before { left: 0 } /* snap to left */

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM