利用jquery怎么实现一个鼠标悬浮弹提示框功能-创新互联

这期内容当中小编将会给大家带来有关利用jquery怎么实现一个鼠标悬浮弹提示框功能,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。

阜新ssl适用于网站、小程序/APP、API接口等需要进行数据传输应用场景,ssl证书未来市场广阔!成为成都创新互联公司的ssl证书销售渠道,可以享受市场价格4-6折优惠!如果有意向欢迎电话联系或者加微信:028-86922220(备注:SSL证书合作)期待与您的合作!

//别忘了导入js文件!





 
 气泡显示
 
 
  .container {
   margin-top: 130px;
  }
  .tip {
   padding: 8px 12px;
   width: 140px;
   display: block;
   font-size: 16px;
   color: #fff;
   font-weight: bold;
   background: #ED5517;
   cursor: pointer;
   margin-left: 400px;
   align-content: center;
   margin-top: 20px;
   margin-bottom: 20px;
  }
  .content {
   position: absolute;
   display: none;
   padding: 10px;
   width: 160px;
   background: #e0edf7;
   border-radius: 6px;
  }

  .content::before {
   content: "";
   position: relative;
   top: -20px;
   left: 10px;
   width: 0;
   height: 0;
   display: block;
   border-left: 10px solid transparent;
   border-right: 10px solid transparent;
   border-bottom: 10px solid #e0edf7;
  }
 



 鼠标悬停显示气泡
 
  The quick fox jumps over a lazy dog.
 
 鼠标悬停显示气泡     The quick fox jumps over a lazy dog.  
 鼠标悬停显示气泡     The quick fox jumps over a lazy dog.  
 $(function(){   $("#xsztip").hover(function(){    show_xszimg(this);   },function(){    hide_xszimg(this);   });   $("#xsztip2").hover(function(){    show_xszimg(this);   },function(){    hide_xszimg(this);   });   $("#xsztip3").hover(function(){    show_xszimg(this);   },function(){    hide_xszimg(this);   });   function hide_xszimg(f){    $(f).next().hide()   }   function show_xszimg(f){    var c=$(f);    var e=c.offset();    var a=e.left;    var b=e.top+40;    $(f).next().css({left:a+"px",top:b+"px"}).show();   }  });

上述就是小编为大家分享的利用jquery怎么实现一个鼠标悬浮弹提示框功能了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注创新互联行业资讯频道。


分享文章:利用jquery怎么实现一个鼠标悬浮弹提示框功能-创新互联
网址分享:http://myzitong.com/article/ddoedi.html

其他资讯