博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
h5/css动态旋转木马源码
阅读量:5234 次
发布时间:2019-06-14

本文共 1202 字,大约阅读时间需要 4 分钟。

 

html,body{ height: 100%;}

*{ box-sizing:border-box;}

.imgBox{ transform-style: preserve-3d; position: relative; width:100px; height: 100px; margin:200px auto 0;}

.imgBox img{width:100%; height: 100%; position: absolute; top:0; transition: transform 1s linear; cursor: pointer;

border-radius: 10px; box-shadow: 1px 1px 1px 1px #222;}

@keyframes xzmm{

from{ transform: perspective(400px) rotateY( 0deg) translateZ(200px);}

to{ transform: perspective(400px) rotateY( 360deg) translateZ(200px);}

}

.imgBox img.sel{ box-shadow: 0 0 3px 1px #00BCD4;}

 

 

 

 

" />

 

" />

 

" />

 

" />

 

" />

 

" />

 

" />

 

" />

 

" />

 

 

$(function(){

var $imgBox = $("#imgBox");

var imgCount = $imgBox.children().length;

var dur = 9; // 旋转一圈所需时间,单位s

$imgBox.children().each(function(i,dom){

var $this = $(this);

$this.css({

"z-index": imgCount-i,

"animation": "xzmm "+dur+"s linear "+i*(dur/imgCount)+"s infinite forwards"

}).on("mouseenter",function(){

$(this).parent().children().removeClass("sel").css({

"animation-play-state": "paused"

});

$(this).addClass("sel");

}).on("mouseleave",function(){

$(this).parent().children().removeClass("sel").css({

"animation-play-state": "running"

});

});

});

})

 

转载于:https://www.cnblogs.com/xsns/p/6698244.html

你可能感兴趣的文章
Python Web框架Django (五)
查看>>
.net学习之继承、里氏替换原则LSP、虚方法、多态、抽象类、Equals方法、接口、装箱拆箱、字符串------(转)...
查看>>
【codevs1033】 蚯蚓的游戏问题
查看>>
【程序执行原理】
查看>>
python的多行注释
查看>>
连接Oracle需要jar包和javadoc文档的下载
查看>>
UVA 10976 - Fractions Again?!
查看>>
Dreamweaver cc新版本css单行显示
查看>>
【android】安卓的权限提示及版本相关
查看>>
JavaScript可否多线程? 深入理解JavaScript定时机制
查看>>
IOS基础学习
查看>>
PHP 导出 Excell
查看>>
Java基础教程——网络基础知识
查看>>
自己到底要的是什么
查看>>
Kruskal基础最小生成树
查看>>
ubuntu 14.04 安装搜狗拼音输入法
查看>>
浅谈算法和数据结构: 一 栈和队列
查看>>
Java内部类详解
查看>>
【hdu 1429】胜利大逃亡(续)
查看>>
图论-次短路求法
查看>>