背景
我允许用户在掩码图像中上传图像....
用户上传图像后,我将在掩码图像中填充用户上传的图像:
1.面具图像:
2.用户上传图片:
3.用户上传的面具上的图像[最终图像]:
代码笔: https ://codepen.io/kidsdial2/pen/OdyemQ
JSfiddle:http: //jsfiddle.net/2xq8p0zy/
html
<body>
<img src="http://139.59.24.243/images/invitations/birthday/a.jpg" alt="">
</body>
css
body {
background-color: #111;
color: #555;
font-size: 1.1em;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
img {
margin: 20px auto;
display: block;
width: 100%;
height: 500px;
-webkit-mask-image: url(http://139.59.24.243/images/invitations/birthday/ice.png);
mask-image: url(http://tympanus.net/codrops-playground/assets/images/cssref/properties/mask-image/mask-image.png);
-webkit-mask-position: center center;
mask-position: center center;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
}
要求:
我想提供一个选项,将用户上传的图像移动到掩码图像中,如下面的小提琴:
http://jsfiddle.net/aLcb4sb5/或 链接
问题:
但目前在网站上,这两个图像都在移动....