[html]代码库
#shareit {
-webkit-user-select: none;
display: none;
position: absolute;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.85);
text-align: center;
top: 0;
left: 0;
z-index: 105;
}
#shareit img {
max-width: 100%;
}
.arrow {
position: absolute;
right: 10%;
top: 5%;
}
#share-text {
margin-top: 400px;
}
//立即分享到微信朋友圈点击事件
$("#share_btn").on("click", function() {
$("#shareit").show();
});
$("#shareit").on("click", function(){
$("#shareit").hide();
})