纯JS代码实现气泡效果

就不给大家多文字说明了。给大家梳理下关键步骤。

关键步骤:

文件

效果的地方

whats up?

3、使用气泡效果

4、这是jquery.thoughtBubblr.js代码

"; return bubbleContainer; },getMainBubble = function() { return '
'; },getText = function() { return ''; },getBubbles = function() { return '
'; },animate = function(){ var bubbles = $(document).find('.bubble'),reversed = bubbles.get().reverse(),speed = settings.speed; $(reversed[0]).stop().animate({ opacity: 1},speed,function() { $(reversed[1]).animate({ opacity: 1},function() { $(reversed[2]).animate({ opacity: 1},function() { $(reversed[3]).animate({ opacity: 1},speed); }); }); }); },unanimate = function() { var bubbles = $(document).find('.bubble'); bubbles.stop().animate({opacity: 0}); },shiftDiv = function( container ) { var bubbleHolder = $(document).find('.bubble-holder'),prevIoUsPosition = container.offset().left; bubbleHolder.css('left',prevIoUsPosition); }; return this.each( function() { var $this = $(this),container = getBubbleDiv( $this ); $this.on('mouseenter',animate ); $this.on('mouSEOut',unanimate ); $(window).on('resize',shiftDiv.bind(this,$this) ); return $this.parent().prepend(container); }); }; })(jQuery);

以上给大家分享了js气泡效果的关键步骤,代码简单易懂,就没给写过多的文字说明,大家有疑问欢迎给我留言,小编会及时回复大家的,在此小编也非常感谢大家对编程之家网站的支持

相关文章

事件冒泡和事件捕获 起因:今天在封装一个bind函数的时候,发现el.addEventListener函数支持第三个参数...
js小数运算会出现精度问题 js number类型 JS 数字类型只有number类型,number类型相当于其他强类型语言...
什么是跨域 跨域 : 广义的跨域包含一下内容 : 1.资源跳转(链接跳转,重定向跳转,表单提交) 2.资源...
@ "TOC" 常见对base64的认知(不完全正确) 首先对base64常见的认知,也是须知的必须有...
搞懂:MVVM模式和Vue中的MVVM模式 MVVM MVVM : 的缩写,说都能直接说出来 :模型, :视图, :视图模...
首先我们需要一个html代码的框架如下: 我们的目的是实现ul中的内容进行横向的一点一点滚动。ul中的内容...