遮蔽图像
我正在尝试使用带有 2 个蒙版的 css 来制作此图像,但我绝对一事无成。 我尝试使用此页面中的代码示例:
http:// www.ajaxandicons.com/2010/04/image-masking-with-css/
我的两个图像是:
和
我无法让它为我的一生工作。有人可以 jsfiddle 或将工作结果放在这里,向我展示如何正确屏蔽图像吗?
I am trying to make this image using css with 2 masks, but i am getting absolutely nowhere.
Ive tried to use the code example from this page:
http://www.ajaxandicons.com/2010/04/image-masking-with-css/
My two images are:
and
I cant get it to work for the life of me. Can someone jsfiddle or put a working result here showing me how to properly mask the image?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 Safari 和 Chrome 中使用
-webkit-mask
CSS3 属性来屏蔽它,如下所示(参见 fiddle在 Safari/Chrome 中):但是,要执行跨浏览器实现,您的蒙版将需要 .png 图像的黑色部分具有 Alpha 透明度,然后使用 CSS 位置覆盖蒙版。
You can mask this in Safari and Chrome using the
-webkit-mask
CSS3 property like so (see fiddle in Safari/Chrome):However, to do a cross-browser implementation your mask will need alpha transparency in the black section of your .png image and then overlay the mask using CSS position.
你正在努力实现这个目标吗? http://jsfiddle.net/6dRSh/
html
css
Are you trying to achieve this? http://jsfiddle.net/6dRSh/
html
css