jQuery实现扑克正反面翻牌效果


Posted in Javascript onMarch 10, 2017

效果图:

jQuery实现扑克正反面翻牌效果

代码如下:

<!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>

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持三水点靠木!

Javascript 相关文章推荐
jquery 实现上下滚动效果示例代码
Aug 09 Javascript
JS中如何设置readOnly的值
Dec 25 Javascript
js返回前一页刷新本页重载页面
Jul 29 Javascript
Node.js 去掉种子(torrent)文件里的邪恶信息
Mar 27 Javascript
Jquery操作Ajax方法小结
Nov 29 Javascript
完美解决JS文件页面加载时的阻塞问题
Dec 18 Javascript
vue几个常用跨域处理方式介绍
Feb 07 Javascript
JavaScript中var、let、const区别浅析
Jun 24 Javascript
判断iOS、Android以及PC端的示例代码
Nov 15 Javascript
Vue数据绑定简析小结
May 07 Javascript
微信小程序用户拒绝授权的处理方法详解
Sep 20 Javascript
用js实现放大镜效果
Oct 28 Javascript
AngularJS之页面跳转Route实例代码
Mar 10 #Javascript
Angular多选、全选、批量选择操作实例代码
Mar 10 #Javascript
jQuery插件HighCharts绘制2D带有Legend的饼图效果示例【附demo源码下载】
Mar 10 #Javascript
Vue.js之slot深度复制详解
Mar 10 #Javascript
JS实现的自动打字效果示例
Mar 10 #Javascript
jquery实现的table排序功能示例
Mar 10 #Javascript
微信小程序 向左滑动删除功能的实现
Mar 10 #Javascript
You might like
PHP校验ISBN码的函数代码
2011/01/17 PHP
php设计模式 Delegation(委托模式)
2011/06/26 PHP
php skymvc 一款轻量、简单的php
2011/06/28 PHP
php Ubb代码编辑器函数代码
2012/07/05 PHP
Zend Studio 实用快捷键一览表(精心整理)
2013/08/10 PHP
C/S和B/S两种架构区别与优缺点分析
2014/10/23 PHP
php curl请求信息和返回信息设置代码实例
2015/04/27 PHP
PHP实现递归无限级分类
2015/10/22 PHP
一个不错的用JavaScript实现的UBB编码函数
2007/03/09 Javascript
js location.replace与location.reload的区别
2010/09/08 Javascript
js实现选中页面文字将其分享到新浪微博
2015/11/05 Javascript
DeviceOne 让你一见钟情的App快速开发平台
2016/02/17 Javascript
javascript中递归的两种写法
2017/01/17 Javascript
Vue + Webpack + Vue-loader学习教程之功能介绍篇
2017/03/14 Javascript
JS异步文件上传(兼容IE8+)
2017/04/02 Javascript
解析NodeJS异步I/O的实现
2017/04/13 NodeJs
深入理解ES7的async/await的用法
2017/09/09 Javascript
JavaScript前端实现压缩图片功能
2020/03/06 Javascript
Node.js API详解之 util模块用法实例分析
2020/05/09 Javascript
解决Vue使用bus总线时,第一次路由跳转时数据没成功传递问题
2020/07/28 Javascript
编写Python脚本来获取Google搜索结果的示例
2015/05/04 Python
python 对dataframe下面的值进行大规模赋值方法
2018/06/09 Python
python实现微信每日一句自动发送给喜欢的人
2019/04/29 Python
使用Python做垃圾分类的原理及实例代码附源码
2019/07/02 Python
python3读取图片并灰度化图片的四种方法(OpenCV、PIL.Image、TensorFlow方法)总结
2019/07/04 Python
python如何实现不用装饰器实现登陆器小程序
2019/12/14 Python
PYQT5 vscode联合操作qtdesigner的方法
2020/03/24 Python
PyTorch中的C++扩展实现
2020/04/02 Python
Django配置Bootstrap, js实现过程详解
2020/10/13 Python
HTML5图片预览实例分享
2014/06/04 HTML / CSS
详解HTML5 window.postMessage与跨域
2017/05/11 HTML / CSS
企业演讲比赛主持词
2014/03/18 职场文书
法律进社区实施方案
2014/03/21 职场文书
2014乡镇干部纪律作风整顿思想汇报
2014/09/13 职场文书
详解vue中v-for的key唯一性
2021/05/15 Vue.js
Linux磁盘管理方法介绍
2022/06/01 Servers