弹性拖动交互切换特效代码

版权:原创 更新时间:1年以上
[该文章底部包含文件资源,可根据自己情况,决定是否下载资源使用,时间>金钱,如有需要,立即查看资源]

以下是 弹性拖动交互切换特效代码 的示例演示效果:

当前平台(PC电脑)
  • 平台:

部分效果截图:

弹性拖动交互切换特效代码

HTML代码(index.html):

<!DOCTYPE html>
<html lang="en" class="no-js">
	<head>
		<meta charset="gb2312" />
		<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> 
		<meta name="viewport" content="width=device-width, initial-scale=1.0"> 
		<title>弹性拖动交互切换特效</title>
		<link rel="stylesheet" type="text/css" href="css/normalize.css" />
		<link rel="stylesheet" type="text/css" href="css/demo.css" />
		<link rel="stylesheet" type="text/css" href="css/component.css" />
		<script src="js/modernizr.custom.js"></script>
	</head>
	<body>
		<div class="container">

			<ul id="elasticstack" class="elasticstack">
				<li><img src="img/1.jpg" alt="01"/><h5>Saudade</h5></li>
				<li><img src="img/2.jpg" alt="02"/><h5>Tuqburni</h5></li>
				<li><img src="img/3.jpg" alt="03"/><h5>Retrouvailles</h5></li>
				<li><img src="img/4.jpg" alt="04"/><h5>Onsra</h5></li>
				<li><img src="img/5.jpg" alt="05"/><h5>Mamihlapinatapai</h5></li>
				<li><img src="img/6.jpg" alt="06"/><h5>Koi No Yokan</h5></li>
			</ul>

		</div><!-- /container -->
		<script src="js/draggabilly.pkgd.min.js"></script>
		<script src="js/elastiStack.js"></script>
		<script>
			new ElastiStack( document.getElementById( 'elasticstack' ) );
		</script>
</body>
</html>





JS代码(elastiStack.js):

/** * elastiStack.js v1.0.0 * http://www.codrops.com * * Licensed under the MIT license. * http://www.opensource.org/licenses/mit-license.php * * Copyright 2013,Codrops * http://www.codrops.com */
;
	( function( window ){
	'use strict';
	function extend( a,b ){
	for( var key in b ){
	if( b.hasOwnProperty( key ) ){
	a[key] = b[key];
}
}
return a;
}
// supportvar is3d = !!getStyleProperty( 'perspective' ),supportTransitions = Modernizr.csstransitions,// transition end event nametransEndEventNames ={
	'WebkitTransition':'webkitTransitionEnd','MozTransition':'transitionend','OTransition':'oTransitionEnd','msTransition':'MSTransitionEnd','transition':'transitionend'}
,transEndEventName = transEndEventNames[ Modernizr.prefixed( 'transition' ) ];
	function ElastiStack( el,options ){
	this.container = el;
	this.options = extend({
}
,this.options );
	extend( this.options,options );
	this._init();
}
function setTransformStyle( el,tval ){
	el.style.WebkitTransform = tval;
	el.style.msTransform = tval;
	el.style.transform = tval;
}
ElastiStack.prototype.options ={
	// distDragBack:if the user stops dragging the image in a area that does not exceed [distDragBack]px for either x or y then the image goes back to the stackdistDragBack:200,// distDragMax:if the user drags the image in a area that exceeds [distDragMax]px for either x or y then the image moves away from the stackdistDragMax:450,// callbackonUpdateStack:function( current ){
	return false;
}
}
;
	ElastiStack.prototype._init = function(){
	// itemsthis.items = [].slice.call( this.container.children );
	// total itemsthis.itemsCount = this.items.length;
	// current item's index (the one on the top of the stack)this.current = 0;
	// set initial stylesthis._setStackStyle();
	// return if no items or only oneif( this.itemsCount <= 1 ) return;
	// add dragging capabilitythis._initDragg();
	// init drag eventsthis._initEvents();
}
;
	ElastiStack.prototype._initEvents = function(){
	var self = this;
	this.draggie.on( 'dragStart',function( i,e,p ){
	self._onDragStart( i,e,p );
}
);
	this.draggie.on( 'dragMove',function( i,e,p ){
	self._onDragMove( i,e,p );
}
);
	this.draggie.on( 'dragEnd',function( i,e,p ){
	self._onDragEnd( i,e,p );
}
);
}
;
	ElastiStack.prototype._setStackStyle = function(){
	var item1 = this._firstItem(),item2 = this._secondItem(),item3 = this._thirdItem();
	if( item1 ){
	item1.style.opacity = 1;
	item1.style.zIndex = 4;
	setTransformStyle( item1,is3d ? 'translate3d(0,0,0)':'translate(0,0)' );
}
if( item2 ){
	item2.style.opacity = 1;
	item2.style.zIndex = 3;
	setTransformStyle( item2,is3d ? 'translate3d(0,0,-60px)':'translate(0,0)' );
}
if( item3 ){
	item3.style.opacity = 1;
	item3.style.zIndex = 2;
	setTransformStyle( item3,is3d ? 'translate3d(0,0,-120px)':'translate(0,0)' );
}
}
;
	ElastiStack.prototype._moveAway = function( instance ){
	// disable dragthis._disableDragg();
	// add class "animate"classie.add( instance.element,'animate' );
	// calculate how much to translate in the x and y axisvar tVal = this._getTranslateVal( instance );
	// apply itsetTransformStyle( instance.element,is3d ? 'translate3d(' + tVal.x + 'px,' + tVal.y + 'px,0px)':'translate(' + tVal.x + 'px,' + tVal.y + 'px)' );
	// item also fades outinstance.element.style.opacity = 0;
	// other items move back to stackvar item2 = this._secondItem(),item3 = this._thirdItem();
	if( item2 ){
	classie.add( item2,'move-back' );
	classie.add( item2,'animate' );
	setTransformStyle( item2,is3d ? 'translate3d(0,0,-60px)':'translate(0,0)' );
}
if( item3 ){
	classie.add( item3,'move-back' );
	classie.add( item3,'animate' );
	setTransformStyle( item3,is3d ? 'translate3d(0,0,-120px)':'translate(0,0)' );
}
// after transition ends..var self = this,onEndTransFn = function(){
	instance.element.removeEventListener( transEndEventName,onEndTransFn );
	// reset first itemsetTransformStyle( instance.element,is3d ? 'translate3d(0,0,-180px)':'translate(0,0,0)' );
	instance.element.style.left = instance.element.style.top = '0px';
	instance.element.style.zIndex = -1;
	classie.remove( instance.element,'animate' );
	// reorder stackself.current = self.current < self.itemsCount - 1 ? self.current + 1:0;
	// new front itemsvar item1 = self._firstItem(),item2 = self._secondItem(),item3 = self._thirdItem();
	// reset transition timing functionclassie.remove( item1,'move-back' );
	if( item2 ) classie.remove( item2,'move-back' );
	if( item3 ) classie.remove( item3,'move-back' );
	setTimeout( function(){
	// the upcoming one will animate..classie.add( self._lastItem(),'animate' );
	// reset styleself._setStackStyle();
}
,25 );
	// add dragging capabilityself._initDragg();
	// init drag events on new current itemself._initEvents();
	// callbackself.options.onUpdateStack( self.current );
}
;
	if( supportTransitions ){
	instance.element.addEventListener( transEndEventName,onEndTransFn );
}
else{
	onEndTransFn.call();
}
}
;
	ElastiStack.prototype._moveBack = function( instance ){
	var item2 = this._secondItem(),item3 = this._thirdItem();
	classie.add( instance.element,'move-back' );
	classie.add( instance.element,'animate' );
	setTransformStyle( instance.element,is3d ? 'translate3d(0,0,0)':'translate(0,0)' );
	instance.element.style.left = '0px';
	instance.element.style.top = '0px';
	if( item2 ){
	classie.add( item2,'move-back' );
	classie.add( item2,'animate' );
	setTransformStyle( item2,is3d ? 'translate3d(0,0,-60px)':'translate(0,0)' );
}
if( item3 ){
	classie.add( item3,'move-back' );
	classie.add( item3,'animate' );
	setTransformStyle( item3,is3d ? 'translate3d(0,0,-120px)':'translate(0,0)' );
}
}
;
	ElastiStack.prototype._onDragStart = function( instance,event,pointer ){
	// remove transition classes if anyvar item2 = this._secondItem(),item3 = this._thirdItem();
	classie.remove( instance.element,'move-back' );
	classie.remove( instance.element,'animate' );
	if( item2 ){
	classie.remove( item2,'move-back' );
	classie.remove( item2,'animate' );
}
if( item3 ){
	classie.remove( item3,'move-back' );
	classie.remove( item3,'animate' );
}
}
;
	ElastiStack.prototype._onDragMove = function( instance,event,pointer ){
	if( this._outOfBounds( instance ) ){
	this._moveAway( instance );
}
else{
	// the second and third items also movevar item2 = this._secondItem(),item3 = this._thirdItem();
	if( item2 ){
	setTransformStyle( item2,is3d ? 'translate3d(' + ( instance.position.x * .6 ) + 'px,' + ( instance.position.y * .6 ) + 'px,-60px)':'translate(' + ( instance.position.x * .6 ) + 'px,' + ( instance.position.y * .6 ) + 'px)' );
}
if( item3 ){
	setTransformStyle( item3,is3d ? 'translate3d(' + ( instance.position.x * .3 ) + 'px,' + ( instance.position.y * .3 ) + 'px,-120px)':'translate(' + ( instance.position.x * .3 ) + 'px,' + ( instance.position.y * .3 ) + 'px)' );
}
}
}
;
	ElastiStack.prototype._onDragEnd = function( instance,event,pointer ){
	if( this._outOfBounds( instance ) ) return;
	if( this._outOfSight(instance) ){
	this._moveAway( instance );
}
else{
	this._moveBack( instance );
}
}
;
	ElastiStack.prototype._initDragg = function(){
	this.draggie = new Draggabilly( this.items[ this.current ] );
}
;
	ElastiStack.prototype._disableDragg = function(){
	this.draggie.disable();
}
;
	// returns true if x or y is bigger than distDragMaxElastiStack.prototype._outOfBounds = function( el ){
	return Math.abs( el.position.x ) > this.options.distDragMax || Math.abs( el.position.y ) > this.options.distDragMax;
}
;
	// returns true if x or y is bigger than distDragBackElastiStack.prototype._outOfSight = function( el ){
	return Math.abs( el.position.x ) > this.options.distDragBack || Math.abs( el.position.y ) > this.options.distDragBack;
}
;
	ElastiStack.prototype._getTranslateVal = function( el ){
	var h = Math.sqrt( Math.pow( el.position.x,2 ) + Math.pow( el.position.y,2 ) ),a = Math.asin( Math.abs( el.position.y ) / h ) / ( Math.PI / 180 ),hL = h + this.options.distDragBack,dx = Math.cos( a * ( Math.PI / 180 ) ) * hL,dy = Math.sin( a * ( Math.PI / 180 ) ) * hL,tx = dx - Math.abs( el.position.x ),ty = dy - Math.abs( el.position.y );
	return{
	x:el.position.x > 0 ? tx:tx * -1,y:el.position.y > 0 ? ty:ty * -1}
}
;
	// returns the first item in the stackElastiStack.prototype._firstItem = function(){
	return this.items[ this.current ];
}
;
	// returns the second item in the stackElastiStack.prototype._secondItem = function(){
	if( this.itemsCount >= 2 ){
	return this.current + 1 < this.itemsCount ? this.items[ this.current + 1 ]:this.items[ Math.abs( this.itemsCount - ( this.current + 1 ) ) ];
}
}
;
	// returns the third item in the stackElastiStack.prototype._thirdItem = function(){
	if( this.itemsCount >= 3 ){
	return this.current + 2 < this.itemsCount ? this.items[ this.current + 2 ]:this.items[ Math.abs( this.itemsCount - ( this.current + 2 ) ) ];
}
}
;
	// returns the last item (of the first three) in the stackElastiStack.prototype._lastItem = function(){
	if( this.itemsCount >= 3 ){
	return this._thirdItem();
}
else{
	return this._secondItem();
}
}
;
	// add to global namespacewindow.ElastiStack = ElastiStack;
}
)( window );
	

JS代码(modernizr.custom.js):

/* Modernizr 2.6.3 (Custom Build) | MIT & BSD * Build:http://modernizr.com/download/#-csstransitions-shiv-cssclasses-prefixed-testprop-testallprops-domprefixes-load */
;
	window.Modernizr=function(a,b,c){
	function x(a){
	j.cssText=a}
function y(a,b){
	return x(prefixes.join(a+";
	")+(b||""))}
function z(a,b){
	return typeof a===b}
function A(a,b){
	return!!~(""+a).indexOf(b)}
function B(a,b){
	for(var d in a){
	var e=a[d];
	if(!A(e,"-")&&j[e]!==c)return b=="pfx"?e:!0}
return!1}
function C(a,b,d){
	for(var e in a){
	var f=b[a[e]];
	if(f!==c)return d===!1?a[e]:z(f,"function")?f.bind(d||b):f}
return!1}
function D(a,b,c){
	var d=a.charAt(0).toUpperCase()+a.slice(1),e=(a+" "+n.join(d+" ")+d).split(" ");
	return z(b,"string")||z(b,"undefined")?B(e,b):(e=(a+" "+o.join(d+" ")+d).split(" "),C(e,b,c))}
var d="2.6.3",e={
}
,f=!0,g=b.documentElement,h="modernizr",i=b.createElement(h),j=i.style,k,l={
}
.toString,m="Webkit Moz O ms",n=m.split(" "),o=m.toLowerCase().split(" "),p={
}
,q={
}
,r={
}
,s=[],t=s.slice,u,v={
}
.hasOwnProperty,w;
	!z(v,"undefined")&&!z(v.call,"undefined")?w=function(a,b){
	return v.call(a,b)}
:w=function(a,b){
	return b in a&&z(a.constructor.prototype[b],"undefined")}
,Function.prototype.bind||(Function.prototype.bind=function(b){
	var c=this;
	if(typeof c!="function")throw new TypeError;
	var d=t.call(arguments,1),e=function(){
	if(this instanceof e){
	var a=function(){
}
;
	a.prototype=c.prototype;
	var f=new a,g=c.apply(f,d.concat(t.call(arguments)));
	return Object(g)===g?g:f}
return c.apply(b,d.concat(t.call(arguments)))}
;
	return e}
),p.csstransitions=function(){
	return D("transition")}
;
	for(var E in p)w(p,E)&&(u=E.toLowerCase(),e[u]=p[E](),s.push((e[u]?"":"no-")+u));
	return e.addTest=function(a,b){
	if(typeof a=="object")for(var d in a)w(a,d)&&e.addTest(d,a[d]);
	else{
	a=a.toLowerCase();
	if(e[a]!==c)return e;
	b=typeof b=="function"?b():b,typeof f!="undefined"&&f&&(g.className+=" "+(b?"":"no-")+a),e[a]=b}
return e}
,x(""),i=k=null,function(a,b){
	function k(a,b){
	var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;
	return c.innerHTML="x<style>"+b+"</style>",d.insertBefore(c.lastChild,d.firstChild)}
function l(){
	var a=r.elements;
	return typeof a=="string"?a.split(" "):a}
function m(a){
	var b=i[a[g]];
	return b||(b={
}
,h++,a[g]=h,i[h]=b),b}
function n(a,c,f){
	c||(c=b);
	if(j)return c.createElement(a);
	f||(f=m(c));
	var g;
	return f.cache[a]?g=f.cache[a].cloneNode():e.test(a)?g=(f.cache[a]=f.createElem(a)).cloneNode():g=f.createElem(a),g.canHaveChildren&&!d.test(a)?f.frag.appendChild(g):g}
function o(a,c){
	a||(a=b);
	if(j)return a.createDocumentFragment();
	c=c||m(a);
	var d=c.frag.cloneNode(),e=0,f=l(),g=f.length;
	for(;
	e<g;
	e++)d.createElement(f[e]);
	return d}
function p(a,b){
	b.cache||(b.cache={
}
,b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag()),a.createElement=function(c){
	return r.shivMethods?n(c,a,b):b.createElem(c)}
,a.createDocumentFragment=Function("h,f","return function(){
	var n=f.cloneNode(),c=n.createElement;
	h.shivMethods&&("+l().join().replace(/\w+/g,function(a){
	return b.createElem(a),b.frag.createElement(a),'c("'+a+'")'}
)+");
	return n}
")(r,b.frag)}
function q(a){
	a||(a=b);
	var c=m(a);
	return r.shivCSS&&!f&&!c.hasCSS&&(c.hasCSS=!!k(a,"article,aside,figcaption,figure,footer,header,hgroup,nav,section{
	display:block}
mark{
	background:#FF0;
	color:#000}
")),j||p(a,c),a}
var c=a.html5||{
}
,d=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,e=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,f,g="_html5shiv",h=0,i={
}
,j;
	(function(){
	try{
	var a=b.createElement("a");
	a.innerHTML="<xyz></xyz>",f="hidden"in a,j=a.childNodes.length==1||function(){
	b.createElement("a");
	var a=b.createDocumentFragment();
	return typeof a.cloneNode=="undefined"||typeof a.createDocumentFragment=="undefined"||typeof a.createElement=="undefined"}
()}
catch(c){
	f=!0,j=!0}
}
)();
	var r={
	elements:c.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",shivCSS:c.shivCSS!==!1,supportsUnknownElements:j,shivMethods:c.shivMethods!==!1,type:"default",shivDocument:q,createElement:n,createDocumentFragment:o}
;
	a.html5=r,q(b)}
(this,b),e._version=d,e._domPrefixes=o,e._cssomPrefixes=n,e.testProp=function(a){
	return B([a])}
,e.testAllProps=D,e.prefixed=function(a,b,c){
	return b?D(a,b,c):D(a,"pfx")}
,g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(f?" js "+s.join(" "):""),e}
(this,this.document),function(a,b,c){
	function d(a){
	return"[object Function]"==o.call(a)}
function e(a){
	return"string"==typeof a}
function f(){
}
function g(a){
	return!a||"loaded"==a||"complete"==a||"uninitialized"==a}
function h(){
	var a=p.shift();
	q=1,a?a.t?m(function(){
	("c"==a.t?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)}
,0):(a(),h()):q=0}
function i(a,c,d,e,f,i,j){
	function k(b){
	if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){
	"img"!=a&&m(function(){
	t.removeChild(l)}
,50);
	for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}
}
var j=j||B.errorTimeout,l=b.createElement(a),o=0,r=0,u={
	t:d,s:c,e:f,a:i,x:j}
;
	1===y[c]&&(r=1,y[c]=[]),"object"==a?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){
	k.call(this,r)}
,p.splice(e,0,u),"img"!=a&&(r||2===y[c]?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}
function j(a,b,c,d,f){
	return q=0,b=b||"j",e(a)?i("c"==b?v:u,a,b,this.i++,c,d,f):(p.splice(this.i++,0,a),1==p.length&&h()),this}
function k(){
	var a=B;
	return a.loader={
	load:j,i:0}
,a}
var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={
}
.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=s?l:n.parentNode,l=a.opera&&"[object Opera]"==o.call(a.opera),l=!!b.attachEvent&&!l,u=r?"object":l?"script":"img",v=l?"script":u,w=Array.isArray||function(a){
	return"[object Array]"==o.call(a)}
,x=[],y={
}
,z={
	timeout:function(a,b){
	return b.length&&(a.timeout=b[0]),a}
}
,A,B;
	B=function(a){
	function b(a){
	var a=a.split("!"),b=x.length,c=a.pop(),d=a.length,c={
	url:c,origUrl:c,prefixes:a}
,e,f,g;
	for(f=0;
	f<d;
	f++)g=a[f].split("="),(e=z[g.shift()])&&(c=e(c,g));
	for(f=0;
	f<b;
	f++)c=x[f](c);
	return c}
function g(a,e,f,g,h){
	var i=b(a),j=i.autoCallback;
	i.url.split(".").pop().split("?").shift(),i.bypass||(e&&(e=d(e)?e:e[a]||e[g]||e[a.split("/").pop().split("?")[0]]),i.instead?i.instead(a,e,f,g,h):(y[i.url]?i.noexec=!0:y[i.url]=1,f.load(i.url,i.forceCSS||!i.forceJS&&"css"==i.url.split(".").pop().split("?").shift()?"c":c,i.noexec,i.attrs,i.timeout),(d(e)||d(j))&&f.load(function(){
	k(),e&&e(i.origUrl,h,g),j&&j(i.origUrl,h,g),y[i.url]=2}
)))}
function h(a,b){
	function c(a,c){
	if(a){
	if(e(a))c||(j=function(){
	var a=[].slice.call(arguments);
	k.apply(this,a),l()}
),g(a,j,b,0,h);
	else if(Object(a)===a)for(n in m=function(){
	var b=0,c;
	for(c in a)a.hasOwnProperty(c)&&b++;
	return b}
(),a)a.hasOwnProperty(n)&&(!c&&!--m&&(d(j)?j=function(){
	var a=[].slice.call(arguments);
	k.apply(this,a),l()}
:j[n]=function(a){
	return function(){
	var b=[].slice.call(arguments);
	a&&a.apply(this,b),l()}
}
(k[n])),g(a[n],j,b,n,h))}
else!c&&l()}
var h=!!a.test,i=a.load||a.both,j=a.callback||f,k=j,l=a.complete||f,m,n;
	c(h?a.yep:a.nope,!!i),i&&c(i)}
var i,j,l=this.yepnope.loader;
	if(e(a))g(a,0,l,0);
	else if(w(a))for(i=0;
	i<a.length;
	i++)j=a[i],e(j)?g(j,0,l,0):w(j)?B(j):Object(j)===j&&h(j,l);
	else Object(a)===a&&h(a,l)}
,B.addPrefix=function(a,b){
	z[a]=b}
,B.addFilter=function(a){
	x.push(a)}
,B.errorTimeout=1e4,null==b.readyState&&b.addEventListener&&(b.readyState="loading",b.addEventListener("DOMContentLoaded",A=function(){
	b.removeEventListener("DOMContentLoaded",A,0),b.readyState="complete"}
,0)),a.yepnope=k(),a.yepnope.executeStack=h,a.yepnope.injectJs=function(a,c,d,e,i,j){
	var k=b.createElement("script"),l,o,e=e||B.errorTimeout;
	k.src=a;
	for(o in d)k.setAttribute(o,d[o]);
	c=j?h:c||f,k.onreadystatechange=k.onload=function(){
	!l&&g(k.readyState)&&(l=1,c(),k.onload=k.onreadystatechange=null)}
,m(function(){
	l||(l=1,c(1))}
,e),i?k.onload():n.parentNode.insertBefore(k,n)}
,a.yepnope.injectCss=function(a,c,d,e,g,i){
	var e=b.createElement("link"),j,c=i?h:c||f;
	e.href=a,e.rel="stylesheet",e.type="text/css";
	for(j in d)e.setAttribute(j,d[j]);
	g||(n.parentNode.insertBefore(e,n),m(c,0))}
}
(this,document),Modernizr.load=function(){
	yepnope.apply(window,[].slice.call(arguments,0))}
;
	

CSS代码(component.css):

*,*:after,*::before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
.elasticstack{position:relative;margin:40px auto;padding:0;width:340px;height:380px;list-style:none;-webkit-perspective:1000px;-webkit-perspective-origin:50% 150%;perspective:1000px;perspective-origin:50% 150%;}
.no-js .elasticstack{max-width:1090px;width:100%;height:auto;text-align:center;}
.elasticstack li{position:absolute;z-index:1;width:340px;height:380px;border-width:60px 20px;border-style:solid;border-color:#fff;box-shadow:0 10px 7px -7px rgba(0,0,0,0.12),0 0 4px rgba(0,0,0,0.1);opacity:0;cursor:pointer;-webkit-transform:translate3d(0,0,-180px);transform:translate3d(0,0,-180px);-webkit-transform-style:preserve-3d;transform-style:preserve-3d;}
.no-js .elasticstack li{position:relative;display:inline-block;opacity:1;margin:10px;cursor:default;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);}
.elasticstack li img{display:block;}
.elasticstack li h5{margin:0 5px;color:#143f51;height:60px;text-align:right;font-size:1.4em;font-family:"Sacramento",cursive;line-height:60px;}
.elasticstack li.animate{-webkit-transition:all 0.3s ease-out;transition:all 0.3s ease-out;}
.elasticstack li.move-back{/* http://matthewlein.com/ceaser/ */
-webkit-transition-timing-function:cubic-bezier(0.175,0.885,0.470,1);/* older webkit */
-webkit-transition-timing-function:cubic-bezier(0.175,0.885,0.470,1.515);transition-timing-function:cubic-bezier(0.175,0.885,0.470,1.515);}

CSS代码(demo.css):

@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700|Sacramento);@font-face{font-family:'codropsicons';src:url('../fonts/codropsicons/codropsicons.eot');src:url('../fonts/codropsicons/codropsicons.eot?#iefix') format('embedded-opentype'),url('../fonts/codropsicons/codropsicons.woff') format('woff'),url('../fonts/codropsicons/codropsicons.ttf') format('truetype'),url('../fonts/codropsicons/codropsicons.svg#codropsicons') format('svg');font-weight:normal;font-style:normal;}
body{font-family:'Lato',Arial,sans-serif;background:#add8df;color:#fff;overflow-x:hidden;overflow-y:scroll;font-weight:300;}
.clearfix:before,.clearfix:after{content:'';display:table;}
.clearfix:after{clear:both;}
a{color:rgba(0,0,0,0.4);text-decoration:none;outline:none;}
a:hover,a:focus{color:#fff;}
.container > header{margin:0 auto;padding:2em;text-align:center;background:rgba(0,0,0,0.01);}
.container > header h1{font-size:2.625em;line-height:1.3;margin:0;font-weight:300;}
.container > header span{display:block;font-size:63%;font-weight:400;color:rgba(0,0,0,0.4);padding:0.2em 0 0.6em 0.1em;}
.container > header span a{color:#fff;}
.container > header span a:hover{opacity:0.7;}
/* To Navigation Style */
.codrops-top{background:rgba(255,255,255,0.2);text-transform:uppercase;width:100%;font-size:0.7em;line-height:2.2;font-weight:700;}
.codrops-top a{text-decoration:none;padding:0 1em;letter-spacing:0.1em;display:inline-block;}
.codrops-top a:hover{background:rgba(255,255,255,0.6);color:#333;}
.codrops-top span.right{float:right;}
.codrops-top span.right a{float:left;display:block;}
.codrops-icon:before{font-family:'codropsicons';margin:0 4px;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;}
.codrops-icon-drop:before{content:"\e001";}
.codrops-icon-prev:before{content:"\e004";}
.related{text-align:center;font-size:1.6em;padding:2em 0;}
.related a{display:block;max-width:200px;margin:0 auto;}
.related a span{display:block;font-size:0.5em;font.weight:300;}
@media screen and (max-width:25em){.codrops-icon span{display:none;}
}

CSS代码(normalize.css):

article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block;}
audio,canvas,video{display:inline-block;}
audio:not([controls]){display:none;height:0;}
[hidden]{display:none;}
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}
body{margin:0;}
a:focus{outline:thin dotted;}
a:active,a:hover{outline:0;}
h1{font-size:2em;margin:0.67em 0;}
abbr[title]{border-bottom:1px dotted;}
b,strong{font-weight:bold;}
dfn{font-style:italic;}
hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;}
mark{background:#ff0;color:#000;}
code,kbd,pre,samp{font-family:monospace,serif;font-size:1em;}
pre{white-space:pre-wrap;}
q{quotes:"\201C" "\201D" "\2018" "\2019";}
small{font-size:80%;}
sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}
sup{top:-0.5em;}
sub{bottom:-0.25em;}
img{border:0;}
svg:not(:root){overflow:hidden;}
figure{margin:0;}
fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;}
legend{border:0;padding:0;}
button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;}
button,input{line-height:normal;}
button,select{text-transform:none;}
button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;}
button[disabled],html input[disabled]{cursor:default;}
input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;}
input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}
input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}
button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}
textarea{overflow:auto;vertical-align:top;}
table{border-collapse:collapse;border-spacing:0;}
附件:下载该文件资源,减少时间成本(增值服务)
留言
该资源可下载
File Source
.rar
126.10 KB
Html Js 图片切换触摸3
最新结算
股权转让协议意向书模板
类型: .docx 金额: CNY 2.23¥ 状态: 待结算 详细>
股权转让协议意向书模板
类型: .docx 金额: CNY 0.28¥ 状态: 待结算 详细>
CSS3图片向上3D翻转渐隐消失特效
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
CSS3图片向上3D翻转渐隐消失特效
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
.net c# 将金额转人名币大写金额
类型: .rar 金额: CNY 2.39¥ 状态: 待结算 详细>
.net c# 将金额转人名币大写金额
类型: .rar 金额: CNY 0.3¥ 状态: 待结算 详细>
合伙退伙协议书范本模板
类型: .doc 金额: CNY 2.23¥ 状态: 待结算 详细>
合伙退伙协议书范本模板
类型: .doc 金额: CNY 0.28¥ 状态: 待结算 详细>
合伙退伙协议书范本模板
类型: .doc 金额: CNY 2.23¥ 状态: 待结算 详细>
合伙退伙协议书范本模板
类型: .doc 金额: CNY 0.28¥ 状态: 待结算 详细>
我们力求给您提供有用的文章,再此基础上,会附加营收资源,不做任何广告,让平台可以更好发展 若您发现您的权利被侵害,或使用了您的版权,请发邮件联系 sunlifel@foxmail.com ggbig觉得 : 不提供源码的文章不是好文章
合作伙伴
联系我们
  • QQ:21499807
  • 邮箱:sunlifel@foxmail.com
  • QQ扫一扫加QQ
    QQ扫一扫
Copyright 2023-2024 ggbig.com·皖ICP备2023004211号-1
打赏文章