溫馨提示×

溫馨提示×

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

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

如何利用CSS3將兩個圖片疊加在一起顯示

發(fā)布時間:2021-08-27 17:10:11 來源:億速云 閱讀:154 作者:chen 欄目:web開發(fā)

本篇內(nèi)容介紹了“如何利用CSS3將兩個圖片疊加在一起顯示”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠?qū)W有所成!

第一種方法:利用mix-blend-mode屬性

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<style>
			body {
				background-color: black;
			}

			.center {
				text-align: center;
				display: block;
			}

			.cool_effect img:first-child {
				position: absolute;
				mix-blend-mode: soft-light;
			}
		</style>
	</head>
	<body>
		<div class="center">
			<div class="cool_effect">
				<img src="https://img.php.cn/upload/article/000/000/024/61289cbf3781b804.jpg">
				<img src="https://img.php.cn/upload/article/000/000/024/61289ccb2cf43141.jpg">
			</div>
		</div>
	</body>
</html>

利用:first-child選擇器選中第一個img圖片,給他設(shè)置絕對定位;然后利用添加關(guān)鍵代碼mix-blend-mode: soft-light;設(shè)置融合混合模式,將上下兩張圖片融合在一起。

效果圖如下:

如何利用CSS3將兩個圖片疊加在一起顯示

說明:mix-blend-mode 屬性描述了元素的內(nèi)容應該與元素的直系父元素的內(nèi)容和元素的背景如何混合。

取值情況:
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; // 亮度

按效果來分可以分為這幾類:
 基礎(chǔ)混合模式  normal  利用圖層透明度和不透明度來控制與下面的圖層混合
 降暗混合模式   darken,multiply,color-burn  減色模式,濾掉圖像中高亮色,從而達到圖像變暗
 加亮混合模式  screen,lighten,color-dodge  加色模式,濾掉圖像中暗色,從而達到圖像變亮
 融合混合模式  overlay,soft-light,hard-light   用于不同程度的對上、下兩圖層的融合
 變異混合模式  difference,exclusion,hard-light 用于制作各種變異的圖層混合
 色彩疊加混合模式    hue,saturation,color,luminosity 根據(jù)圖層的色相,飽和度等基本屬性,完成圖層融合

方法2:利用背景屬性

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<style>
			body {
			  background-image: url(https://img.php.cn/upload/article/000/000/024/6128a4d8808ab560.png), 
			  url(https://images.unsplash.com/photo-1478719059408-592965723cbc?ixlib=rb-1.2.1&auto=format&fit=crop&w=2212&q=80);
			  background-position: top, top;
			  background-repeat: repeat, no-repeat;
			  background-size: contain, cover;
			}
		</style>
	</head>
	<body>
		</div>
	</body>
</html>

直接在background-image中指定多個背景路徑即可,效果圖如下:

如何利用CSS3將兩個圖片疊加在一起顯示

“如何利用CSS3將兩個圖片疊加在一起顯示”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!

向AI問一下細節(jié)

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

AI