直播軟體搭建,關於個人主頁背景色的更改

zhibo系統開發發表於2022-04-12

直播軟體搭建,關於個人主頁背景色的更改實現的相關程式碼

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>菜鳥教程(runoob.com)</title>
<style>
.container {
  background-color: yellow;
  height: 5000px;
}
 
img {
  width: 33.33%;
  height: auto;
  float: left;
}
 
.normal {mix-blend-mode: normal;}
.multiply {mix-blend-mode: multiply;}
.screen {mix-blend-mode: screen;}
.overlay {mix-blend-mode: overlay;}
.darken {mix-blend-mode: darken;}
.lighten {mix-blend-mode: lighten;}
.color-dodge {mix-blend-mode: color-dodge;}
.color-burn {mix-blend-mode: color-burn;}
.difference {mix-blend-mode: difference;}
.exclusion {mix-blend-mode: exclusion;}
.hue {mix-blend-mode: hue;}
.saturation {mix-blend-mode: saturation;}
.color {mix-blend-mode: color;}
.luminosity {mix-blend-mode: luminosity;}
</style>
</head>
<body>
 
<h2>使用mix-blend-mode 值</h2>
<p>mix-blend-mode 屬性描述了元素的內容需要與父元素的背景顏色進行混合:</p>
 
<div class="container">
  <img src="pineapple.jpg" alt="Pineapple" class="normal" width="300" height="300">
  <img src="pineapple.jpg" alt="Pineapple" class="multiply" width="300" height="300">
  <img src="pineapple.jpg" alt="Pineapple" class="screen" width="300" height="300">
  <img src="pineapple.jpg" alt="Pineapple" class="overlay" width="300" height="300">
  <img src="pineapple.jpg" alt="Pineapple" class="darken" width="300" height="300">
  <img src="pineapple.jpg" alt="Pineapple" class="lighten" width="300" height="300">
  <img src="pineapple.jpg" alt="Pineapple" class="color-dodge" width="300" height="300">
  <img src="pineapple.jpg" alt="Pineapple" class="color-burn" width="300" height="300">
  <img src="pineapple.jpg" alt="Pineapple" class="difference" width="300" height="300">
  <img src="pineapple.jpg" alt="Pineapple" class="exclusion" width="300" height="300">
  <img src="pineapple.jpg" alt="Pineapple" class="hue" width="300" height="300">
  <img src="pineapple.jpg" alt="Pineapple" class="saturation" width="300" height="300">
  <img src="pineapple.jpg" alt="Pineapple" class="color" width="300" height="300">
  <img src="pineapple.jpg" alt="Pineapple" class="luminosity" width="300" height="300">
</div>
 
<p><strong>注意:</strong>Internet Explorer 或 Edge 瀏覽器不支援 mix-blend-mode 屬性。</p>
 
</body>
</html>

以上就是直播軟體搭建,關於個人主頁背景色的更改實現的相關程式碼, 更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2886682/,如需轉載,請註明出處,否則將追究法律責任。

相關文章