jQuery实现扑克正反面翻牌效果
程序员文章站
2022-04-07 15:21:08
效果图:
代码如下:
效果图:
代码如下:
<!doctype> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>【jquery插件】扑克正反面翻牌效果</title> <style> *{margin:0px;padding:0px;list-style:none;font-size: 16px;} </style> </head> <body> <style> .demo1 {margin:10px; width: 200px;height: 100px;text-align: center;position: relative;} .demo1 .front{width: 200px;height: 100px;position:absolute;left:0px;top:0px;background-color: #000;color: #fff;} .demo1 .behind{width: 200px;height: 0px;position:absolute;left:0px;top:50px;background-color: #ccc;color: #000;display: none;} </style> <h1>demo1 y轴 (css布局提示:背面默认隐藏 height为0 top是高度的一半也就是demo中间)</h1> <div class="demo1"> <div class="front">正面正面正<br/>面正面正面<br/></div> <div class="behind">背面</div> </div> <div class="demo1"> <div class="front">正面</div> <div class="behind">背面</div> </div> <style> .demo2 {margin:10px; width: 200px;height: 100px;text-align: center;position: relative;} .demo2 .front{width: 200px;z-index: 1; height: 100px;position:absolute;left:0px;top:0px;background-color: #000;color: #fff;} .demo2 .behind{width: 0;height: 100px;z-index: 0;position:absolute;left:100px;top:0;background-color: #ccc;color: #000;} </style> <h1>demo2 x轴(css布局提示:背面默认隐藏 width为0 left是宽度的一半也就是demo中间)</h1> <div class="demo2"> <div class="front">正面</div> <div class="behind">背面</div> </div> <div class="demo2"> <div class="front">正面</div> <div class="behind">背面</div> </div> <script type="text/javascript" src="http://static.cnmo-img.com.cn/js/jquery144p.js"></script> <script> (function($) { /* ==================================================== 【jquery插件】扑克翻牌效果 @auther liuming @blog http://www.cnblogs.com/dtdxrk/ ==================================================== @front:正面元素 @behind:背面元素 @direction:方向 @dis:距离 @mouse: 'enter' 'leave' 判断鼠标移入移出 @speed: 速度 不填默认速度80 建议不要超过100 */ var overturnanimate = function(front, behind, direction, dis, mouse, speed){ /*判断移入移出*/ var $front = (mouse == 'enter') ? front : behind, $behind = (mouse == 'enter') ? behind : front; $front.stop(); $behind.stop(); if(direction == 'x'){ $front.animate({left: dis/2,width: 0},speed, function() { $front.hide(); $behind.show().animate({left: 0,width: dis},speed); }); }else{ $front.animate({top: dis/2,height: 0},speed, function() { $front.hide(); $behind.show().animate({top: 0,height: dis},speed); }); } }; /* @demo $('.demo1').overturn(@direction, @speed); @direction(string)必选 'y' || 'x' 方向 @speed(number)可选 速度 */ $.fn.overturn = function(direction, speed) { /*配置参数*/ if(direction!='x' && direction!='y'){throw new error('overturn arguments error');} $.each(this, function(){ var $this = $(this), $front = $this.find('.front'), $behind = $this.find('.behind'), dis = (direction=='x') ? $this.width() :$this.height(), s = number(speed) || 80;/*默认速度80 建议不要超过100*/ $this.mouseenter(function() { overturnanimate($front, $behind, direction, dis, 'enter', s); }).mouseleave(function() { overturnanimate($front, $behind, direction, dis, 'leave', s); }); }); }; })(jquery); /*插件引用方法y*/ $('.demo1').overturn('y',100);/*speed不填默认速度80 建议不要超过100*/ /*插件引用方法x*/ $('.demo2').overturn('x'); </script> </body> </html>
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!
上一篇: 如何为你的网站挑选适宜的Web开发框架?
推荐阅读
-
jQuery实现鼠标滚轮动态改变样式或效果
-
jquery实现弹出层完美居中效果
-
jQuery实现页面倒计时并刷新效果
-
jquery实现折叠菜单效果【推荐】
-
jQuery插件FusionWidgets实现的Bulb图效果示例【附demo源码下载】
-
jQuery插件FusionWidgets实现的Cylinder图效果示例【附demo源码】
-
jQuery插件FusionWidgets实现的AngularGauge图效果示例【附demo源码】
-
jQuery插件FusionCharts实现的MSBar3D图效果示例【附demo源码】
-
jquery实现烟花效果(面向对象)
-
jquery滚动组件(vticker.js)实现页面动态数据的滚动效果