码迷,mamicode.com
首页 > 微信 > 详细

【技术】悬浮微信二维码微博分享置顶

时间:2015-09-07 11:00:43      阅读:507      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

滚动条滚动到50后:

技术分享

html部分:

<li style="display:none;height:50px;" id="li-top"><a id="top" href="#top"></a></li>

js部分:

$(document).ready(function(){
  $(window).scroll(function() {
    if ($(window).scrollTop() > 50) {    //滚动条滚动到50的时候出现“返回顶部”图片
      $(‘#li-top‘).fadeIn(800);
    } else {
      $(‘#li-top‘).fadeOut(800);
    }
  });
  $("#top").click(function() {
    $(‘body,html‘).animate({
      scrollTop: 0   //点击“返回顶部”图片时,滚动条滚动到高度为0的地方
    },
    1000);
    return false;
  });
});

技术分享

html部分:

<li style="height:50px">
  <a id="weixin" href="javascript:void(0)" onmouseover="showEWM()" onmouseout="hideEWM()">
    <div id="EWM"><img src="images/weixin_code.jpg" /></div>
  </a>
</li>

css部分:

#weixin{background:url(../images/weixin.png) repeat scroll 0% 0% transparent;}

#weixin:hover{background:url(../images/weixind.png) repeat scroll 0% 0% transparent;}    //鼠标移到“绿色微信图片”上时,变为“腾讯微信”文字图片

 

#EWM{ position:absolute; left:40px; display:none;}
#EWM img{ width:150px; height:150px;}  //鼠标移到“绿色微信图片”上时,显示二维码图片

js部分:

function showEWM()
  {
    document.getElementById("EWM").style.display = ‘block‘;
  }
function hideEWM()
  {
    document.getElementById("EWM").style.display = ‘none‘;
  }  //鼠标移到“绿色微信图片”上时,显示二维码图片

【技术】悬浮微信二维码微博分享置顶

标签:

原文地址:http://www.cnblogs.com/ybingbing_1213/p/4788117.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!