您好,登錄后才能下訂單哦!
這篇文章主要介紹了CSS3中mask遮罩怎么用,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
css的mask屬性允許使用者通過部分或者完全隱藏一個元素的可見區域。這種效果可以通過遮罩或者裁切特定區域的圖片。
mask的簡寫會將 mask-border 設為初始值。使用mask的簡寫優于其他簡寫或者各自屬性的設置來覆蓋。這能保證mask-border也會重新設置為新的效果樣式。
mask-image
mask-image 通過讀取透明度對html元素進行遮罩,黑色代表透明,白色代表不透明,灰色為半透明。適用于所有元素,在SVG中,它作用于包含<defs>元素和所有圖形元素的容器。
/* 圖片資源 */ -webkit-mask-image: url(mask.png); /* css的漸變屬性 */ -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0)); /* image屬性 ~ ??? */ -webkit-mask-image: image(url(mask.png), skyblue); /* 混合屬性 */ -webkit-mask-image: url('https://cache.yisu.com/upload/information/20210311/295/7925.jpg'), linear-gradient(rgba(0, 0, 0, 1.0), transparent);
mask-repeat
/* 單個值 */ -webkit-mask-repeat: no-repeat | repeat-x | repeat-y | space | round | repeat(默認值); /* 兩個值 horizontal(水平) vertical(垂直) (以下僅為示例)*/ -webkit-mask-repeat: repeat space | repeat repeat | round space | no-repeat round; /* Multiple values */ -webkit-mask-repeat: space round, no-repeat; -webkit-mask-repeat: round repeat, space, repeat-x; /* 多層遮罩 (。?_?)/~~~*/ mask-image: url('mask1.png'), url('mask2.png'); mask-repeat: repeat-x, repeat-y;
mask-clip
-webkit-mask-clip: content-box | padding-box | border-box | margin-box | fill-box | stroke-box | view-box | no-clip; -webkit-mask-clip: border; -webkit-mask-clip: padding; -webkit-mask-clip: content; -webkit-mask-clip: text; /* Multiple values */ -webkit-mask-clip: padding-box, no-clip; -webkit-mask-clip: view-box, fill-box, border-box;
mask-origin
/* Keyword values */ mask-origin: content-box; mask-origin: padding-box; mask-origin: border-box; mask-origin: margin-box; mask-origin: fill-box; mask-origin: stroke-box; mask-origin: view-box; /* Multiple values */ mask-origin: padding-box, content-box; mask-origin: view-box, fill-box, border-box; /* Non-standard keyword values */ -webkit-mask-origin: content; -webkit-mask-origin: padding; -webkit-mask-origin: border;
mask-size
.divTest{ padding: 40px; background-color: #03ff36; background-image: url(https://cache.yisu.com/upload/information/20210311/295/7926.gif)); -webkit-mask-image: url(http://image27.360doc.com/DownloadImg/2011/04/2015/11077777_58.png)), url(https://cache.yisu.com/upload/information/20210311/295/7927.png)); -webkit-mask-repeat: space,repeat-y; -webkit-mask-clip: text; -webkit-mask-size: 5%, 8%; border: 30px solid red; }
mask-composite (均不支持 ? _ ? )
mask-composite: add | subtract | intersect | exclude;
感謝你能夠認真閱讀完這篇文章,希望小編分享的“CSS3中mask遮罩怎么用”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。