您好,登錄后才能下訂單哦!
本篇文章為大家展示了css中怎么實現動態陰影效果,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
css實現動態陰影
創建與類似的陰影box-shadow 而是基于元素本身的顏色。
代碼實現:
<div class="dynamic-shadow-parent"> <div class="dynamic-shadow"></div> </div> <style> .dynamic-shadow-parent { position: relative; z-index: 1; } .dynamic-shadow { position: relative; width: 10rem; height: 10rem; background: linear-gradient(75deg, #6d78ff, #00ffb8); } .dynamic-shadow::after { content: ''; width: 100%; height: 100%; position: absolute; background: inherit; top: 0.5rem; filter: blur(0.4rem); opacity: 0.7; z-index: -1; } </styel>
效果如下:
說明
代碼片段需要一些復雜的情況來正確堆疊上下文,這樣偽元素將定位在元素本身的下面,同時仍然可見。
position: relative
在父元素上為子元素建立笛卡爾定位上下文。z-index: 1
建立新的堆疊內容。position: relative
在子級上建立偽元素的定位上下文。::after
定義偽元素。position: absolute
從文檔流中取出偽元素,并將其相對于父元素定位。width: 100%
和height: 100%
調整偽元素的大小以填充其父元素的尺寸,使其大小相等。background: inherit
使偽元素繼承在元素上指定的線性漸變。top: 0.5rem
將偽元素從其父元素稍微向下偏移。filter: blur(0.4rem)
將模糊偽元素以在下面創建陰影的外觀。opacity: 0.7
使偽元素部分透明。z-index: -1
將偽元素定位在父元素后面。
瀏覽器支持91.7 %,需要前綴才能獲得完全支持
蝕刻文本
創建文本顯示為“蝕刻”或刻在背景中的效果。
代碼實現:
<p class="etched-text">I appear etched into the background.</p> </styel> .etched-text { text-shadow: 0 2px white; font-size: 1.5rem; font-weight: bold; color: #b8bec5; } </styel>
效果如下:
說明
text-shadow: 0 2px white 創建白色陰影偏移0px 水平和2px 垂直于原點位置。
背景必須比陰影暗,效果才能發揮作用。
文字顏色應該稍微褪色,使其看起來像是刻在背景上的。
瀏覽器支持98.1 %,沒有警告。
漸變文本
為文本提供漸變顏色。
代碼實現:
<p class="gradient-text">Gradient text</p> </styel> .gradient-text { background: -webkit-linear-gradient(pink, red); -webkit-text-fill-color: transparent; -webkit-background-clip: text; } </styel>
效果如下:
說明
background: -webkit-linear-gradient(...)
為文本元素提供漸變背景。webkit-text-fill-color: transparent
使用透明顏色填充文本。webkit-background-clip: text
用文本剪輯背景,用漸變背景作為顏色填充文本。
上述內容就是css中怎么實現動態陰影效果,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。