91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

CSS怎么實現貨車loader的效果

發布時間:2022-01-20 14:48:37 來源:億速云 閱讀:158 作者:清風 欄目:web開發

這篇“CSS怎么實現貨車loader的效果”除了程序員外大部分人都不太理解,今天小編為了讓大家更加理解“CSS怎么實現貨車loader的效果”,給大家總結了以下內容,具有一定借鑒價值,內容詳細步驟清晰,細節處理妥當,希望大家通過這篇文章有所收獲,下面讓我們一起來看看具體內容吧。

  代碼解讀

  定義dom,容器代表卡車,包含的2個子元素代表車頭和尾氣;<hr>代表道路:

  <divclass="truck">

  <spanclass="cab"></span>

  <spanclass="smoke"></span>

  </div>

  <hr>

  居中顯示,同時道路與頁面之間留出空間:

  body{

  margin:10%;

  padding-top:10%;

  }

  畫出卡車車廂:

  .truck{

  width:15em;

  height:5em;

  font-size:10px;

  background-color:#444;

  border-radius:0.4em;

  }

  用偽元素畫出車廂的車輪:

  .truck{

  position:relative;

  }

  .truck::before,

  .truck::after{

  content:'';

  position:absolute;

  box-sizing:border-box;

  width:2em;

  height:2em;

  background-color:#444;

  border:0.1emsolidwhite;

  border-radius:50%;

  bottom:-1em;

  }

  .truck::before{

  left:0.6em;

  }

  .truck::after{

  right:0.6em;

  }

  畫出車頭:

  .cab{

  position:absolute;

  width:3.3em;

  height:2.5em;

  background-color:#333;

  left:-3.5em;

  bottom:0;

  border-radius:40%00.4em0.4em;

  }

  .cab::before{

  content:'';

  position:absolute;

  width:2em;

  height:1.5em;

  background-color:#333;

  top:-1.5em;

  right:0;

  border-radius:100%000;

  }

  畫出車頭的車輪:

  .cab::after{

  content:'';

  position:absolute;

  box-sizing:border-box;

  width:2em;

  height:2em;

  background-color:#444;

  border:0.1emsolidwhite;

  border-radius:50%;

  bottom:-1em;

  left:0.5em;

  }

  畫出尾氣的初始狀態:

  .smoke,

  .smoke::before,

  .smoke::after{

  content:'';

  position:absolute;

  width:1em;

  height:1em;

  background-color:#333;

  right:-0.1em;

  bottom:-0.5em;

  border-radius:50%;

  }

  增加排出尾氣的動畫:

  .smoke{

  animation:smoke-12sinfinite;

  }

  .smoke::before{

  animation:smoke-22sinfinite;

  }

  .smoke::after{

  animation:smoke-32sinfinite;

  }

  @keyframessmoke-1{

  to{

  width:3em;

  height:3em;

  right:-3em;

  bottom:0.5em;

  }

  }

  @keyframessmoke-2{

  to{

  width:2.5em;

  height:2.5em;

  right:-6em;

  bottom:0.8em;

  }

  }

  @keyframessmoke-3{

  to{

  width:3.5em;

  height:3.5em;

  right:-4em;

  bottom:0.2em;

  }

  }

  增加尾氣的飄散效果:

  .smoke{

  animation:

  drift2sinfinite,

  smoke-12sinfinite;

  }

  .smoke::before{

  animation:

  drift3sinfinite,

  smoke-23sinfinite;

  }

  .smoke::after{

  animation:

  drift4sinfinite,

  smoke-34sinfinite;

  }

  @keyframesdrift{

  0%,100%{

  filter:opacity(0);

  }

  15%{

  filter:opacity(0.9);

  }

  }

  增加卡車行駛的動畫效果:

  .truck{

  animation:

  move5sinfinite;

  }

  @keyframesmove{

  0%{

  margin-left:90%;

  }

  50%{

  margin-left:45%;

  }

  100%{

  margin-left:0;

  }

  0%,100%{

  filter:opacity(0);

  }

  10%,90%{

  filter:opacity(1);

  }

  }

  增加卡片行駛中顛簸的動畫效果:

  .truck{

  animation:

  put-put2sinfinite,

  move10sinfinite;

  }

  @keyframesput-put{

  0%{

  margin-top:0;

  height:5em;

  }

  5%{

  margin-top:-0.2em;

  height:5.2em;

  }

  20%{

  margin-top:-0.1em;

  height:5em;

  }

  35%{

  margin-top:0.1em;

  height:4.9em;

  }

  40%{

  margin-top:-0.1em;

  height:5.1em;

  }

  60%{

  margin-top:0.1em;

  height:4.9em;

  }

  75%{

  margin-top:0;

  height:5em;

  }

  80%{

  margin-top:-0.4em;

  height:5.2em;

  }

  100%{

  margin-top:0.1em;

  height:4.9em;

  }

  }



CSS怎么實現貨車loader的效果

css的三種引入方式

1.行內樣式,最直接最簡單的一種,直接對HTML標簽使用style=""。2.內嵌樣式,就是將CSS代碼寫在之間,并且用

進行聲明。3.外部樣式,其中鏈接樣式是使用頻率最高,最實用的樣式,只需要在之間加上

就可以了。其次就是導入樣式,導入樣式和鏈接樣式比較相似,采用@import樣式導入CSS樣式表,不建議使用。

感謝您的閱讀,希望您對“CSS怎么實現貨車loader的效果”這一關鍵問題有了一定的理解,具體使用情況還需要大家自己動手實驗使用過才能領會,快去試試吧,如果想閱讀更多相關知識點的文章,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

东平县| 巢湖市| 永寿县| 磐安县| 林周县| 恭城| 江孜县| 理塘县| 平顶山市| 曲水县| 聂拉木县| 安龙县| 化德县| 梁河县| 岳西县| 九龙县| 张家川| 丰都县| 会宁县| 韶关市| 班戈县| 承德县| 霸州市| 怀来县| 亳州市| 常熟市| 苏尼特左旗| 五常市| 榆社县| 彩票| 游戏| 会泽县| 鄱阳县| 黄山市| 澜沧| 荥阳市| 库伦旗| 亚东县| 顺昌县| 白银市| 金坛市|