首页 > 微信 > 详细

微信分享到朋友圈按钮 右上角提示

时间:2018-01-09 16:08:26      阅读:602      评论:0      收藏:0      [点我收藏+]
<html>
<head>
<meta charset="utf-8">
</head>
<style>
#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;
}
</style>
</head>
<body>
<a id="share_btn" href="####">分享到朋友圈</a>
<div id="shareit"> 
  <img class="arrow" src="http://dev.vxtong.com/cases/nuannan/imgs/share-it.png"> 
  <a href="#" id="follow"> 
    <img id="share-text" src="http://dev.vxtong.com/cases/nuannan/imgs/share-text.png">
  </a>
</div>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.min.js"></script>
<script>
  //立即分享到微信朋友圈点击事件
  $("#share_btn").on("click", function() {
      $("#shareit").show();
  });
  
  
  $("#shareit").on("click", function(){
    $("#shareit").hide();  
  })
</script>
</body>
</html>

代码运行结果图如下:

技术分享图片

微信分享到朋友圈按钮 右上角提示

原文:https://www.cnblogs.com/shuilangyizu/p/8251559.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!