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

溫馨提示×

溫馨提示×

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

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

使用CSS3怎么制作一個抖音LOGO

發布時間:2021-05-24 16:11:55 來源:億速云 閱讀:181 作者:Leah 欄目:web開發

今天就跟大家聊聊有關使用CSS3怎么制作一個抖音LOGO,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

完成單個“J”

<div class="jitter">
    <div class="logo"></div>
</div>

添加樣式

.jitter {
  position: relative;
  width: 200px;
  margin: 100px auto;
}

// 第一部分
.logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 47px;
  height: 218px;
  z-index: 1;
  background: #24f6f0;
}
// 第二部分
.logo::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border: 40px solid #24f6f0;
  border-right: 40px solid transparent;
  border-top: 40px solid transparent;
  border-left: 40px solid transparent;
  top: -110px;
  right: -183px;
  border-radius: 100%;
  transform: rotate(45deg);
  z-index: -10;
}
// 第三部分
.logo::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border: 47px solid #24f6f0;
  border-top: 47px solid transparent;
  border-radius: 50%;
  top: 121px;
  left: -147px;
  transform: rotate(45deg);
}

第一部分,就是個矩形

第二部分,是圓環的1/4

第三部分,是圓環的3/4

使用CSS3怎么制作一個抖音LOGO

有句話叫做“方法不對,努力白費”所有的前端大神都有自己的學習方法,而學web前端的學習也基本一致,而對于一個什么都不懂的初學者,根本不會知道該怎么學,這也是造成失敗的最直接原因。所以學web前端一定要有人指點。如果你處在迷茫期,找不到方向。可以加入我們的前端學習交流qun: 784783012 。有任何不明白的東西隨時來問我。點擊:前端學習圈

添加另外一個“J”

<div class="jitter">
    <div class="logo"></div>
    <div class="logo"></div>
</div>

樣式只需要添加

...
// 省略上面的樣式
...
// 和第一個J錯開10px
.logo:last-child {
  left: 10px;
  top: 10px;
  background: #fe2d52;
  z-index: 100;
}
// 填充紅色
.logo:last-child::before {
  border: 47px solid #fe2d52;
  border-top: 47px solid transparent;
}
.logo:last-child::after {
  border: 40px solid #fe2d52;
  border-right: 40px solid transparent;
  border-top: 40px solid transparent;
  border-left: 40px solid transparent;
}

使用CSS3怎么制作一個抖音LOGO 

主角登場 - mix-blend-mode

CSS3 新增了一個很有意思的屬性 &ndash; mix-blend-mode ,其中 mix 和 blend 的中文意譯均為混合,那么這個屬性的作用直譯過來就是混合混合模式,當然,我們我們通常稱之為混合模式。

混合模式最常見于 photoshop 中,是 PS 中十分強大的功能之一。下面來看看 mix-blend-mode 有哪些屬性可以設置:

mix-blend-mode: normal;         // 正常
mix-blend-mode: multiply;       // 正片疊底
mix-blend-mode: screen;         // 濾色
mix-blend-mode: overlay;        // 疊加
mix-blend-mode: darken;         // 變暗
mix-blend-mode: lighten;        // 變亮
mix-blend-mode: color-dodge;    // 顏色減淡
mix-blend-mode: color-burn;     // 顏色加深
mix-blend-mode: hard-light;     // 強光
mix-blend-mode: soft-light;     // 柔光
mix-blend-mode: difference;     // 差值
mix-blend-mode: exclusion;      // 排除
mix-blend-mode: hue;            // 色相
mix-blend-mode: saturation;     // 飽和度
mix-blend-mode: color;          // 顏色
mix-blend-mode: luminosity;     // 亮度

mix-blend-mode: initial;
mix-blend-mode: inherit;
mix-blend-mode: unset;

然后我們添加 mix-blend-mode:lighten

.logo:last-child {
  ...
  mix-blend-mode: lighten;
}

看看效果:

使用CSS3怎么制作一個抖音LOGO

是不是很Ok了?

然后我們添加動畫,讓第二個J緩慢和一個J融合。

動畫融合

.logo:last-child {
  ...
  animation: move 10s infinite;
}
@keyframes move {
  0% {
    transform: translate(200px);
  }
  50% {
    transform: translate(0px);
  }
  100% {
    transform: translate(0px);
  }
}

看完上述內容,你們對使用CSS3怎么制作一個抖音LOGO有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

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

AI

嘉义市| 扎赉特旗| 宜阳县| 怀远县| 自治县| 岑溪市| 邓州市| 会昌县| 郓城县| 白银市| 江源县| 宿松县| 察雅县| 白河县| 改则县| 河东区| 墨竹工卡县| 池州市| 体育| 镇赉县| 绩溪县| 合川市| 德惠市| 洪雅县| 囊谦县| 满洲里市| 湘潭市| 绵阳市| 东安县| 凯里市| 中卫市| 阆中市| 铅山县| 佛冈县| 山丹县| 巫溪县| 通化县| 赞皇县| 沈丘县| 岫岩| 昆明市|