html5 css3:3d旋转木马效果相册-kb88凯时官网登录

时间:2019-08-09
阅读:
免费资源网 - https://freexyz.cn/

这篇博客的目的是因为上篇html5 css3专题 诱人的实例 css3打造百度贴吧的3d翻牌效果中有个关于css 3d效果的比较重要的知识点没讲到,就是perspective和tranlatey

效果图:嘿嘿,我把大学毕业时的一些照片,做成旋转木马,绕着我大文理旋转,不忘母校的培育之恩~

 

1、perspective

perspective属性包括两个属性:none和具有单位的长度值。

其中perspective属性的默认值为none,表示无限的角度来看3d物体,但看上去是平的。另一个值接受一个长度单位大于0的值。而且其单位不能为百分比值。值越大,角度出现的越远,从而创建一个相当低的强度和非常小的3d空间变化。反之,此值越小,角度出现的越近,从而创建一个高强度的角度和一个大型3d变化。简单一点说:当perspective设置length时,如果越小则表示3d效果越明显,你的眼睛就越靠近3d物体,反之则反之。

2、transform: translatez(length)

假设设置了perspective:300px时,设置translatez的值越小则子元素大小越小,当设置值接近300px时,则仿佛此元素在面前,当超过300px以后,则以前到达你视野的后面,该元素就不可见了。

上例的核心:

1、首先所有的图片的容器position:absolute,叠加在一起,然后一次设置rotatey分别为40*i ,i= 0 , 1, 2...9 ;所有图片会相交成一个类似花的形状

2、然后为每个图片的容器设置translatez,所有图片会从对应的角度向外移动,扩展成一个大圆,即上图效果。

html:

  
  
  
      
      
      
      
  
      
  
     
  
  
  
  • do one thing at a time, and do well..
  • do one thing at a time, and do well..
  • keep on going never give up.
  • whatever is worth doing is worth doing well.
  • believe in yourself.
  • action speak louder than words.
  • never put off what you can do today until tomorrow.
  • jack of all trades and master of none.
  • judge not from appearances.

css:

li  
{  
    width: 128px;  
    box-shadow: 0 1px 3px rgba(0, 0, 0, .5);  
    position: absolute;  
    bottom: 0;  
}  
  
li img  
{  
    width: 128px;  
    box-shadow: 0 1px 3px rgba(0, 0, 0, .5);  
    vertical-align: middle;  
}  
  
li span  
{  
    display: block;  
    width: 128px;  
    text-align: center;  
    color: #333;  
    font-size: 8px;  
}  
  
#stage  
{  
  
    width: 900px;  
    min-height: 100px;  
    margin-left: auto;  
    margin-right: auto;  
    padding: 100px 50px;  
    -webkit-perspective: 1200px;  
    position: relative;  
}  
  
#container  
{  
    background:  no-repeat 0 0;  
    margin-top: 200px;  
    width: 128px;  
    box-shadow: 0 1px 3px rgba(0, 0, 0, .5);  
    height: 100px;  
    margin-left: -64px;  
    -webkit-transition: -webkit-transform 1s;  
    transition: transform 1s;  
    -webkit-transform-style: preserve-3d;  
    position: absolute;  
    left: 50%;  
}  
  
li:nth-child(0)  
{  
    -webkit-transform: rotatey(0deg) translatez(300px);  
}  
  
li:nth-child(1)  
{  
    -webkit-transform: rotatey(40deg) translatez(300px);  
}  
  
li:nth-child(2)  
{  
    -webkit-transform: rotatey(80deg) translatez(300px);  
}  
  
li:nth-child(3)  
{  
    -webkit-transform: rotatey(120deg) translatez(300px);  
}  
  
li:nth-child(4)  
{  
    -webkit-transform: rotatey(160deg) translatez(300px);  
}  
  
li:nth-child(5)  
{  
    -webkit-transform: rotatey(200deg) translatez(300px);  
}  
  
li:nth-child(6)  
{  
    -webkit-transform: rotatey(240deg) translatez(300px);  
}  
  
li:nth-child(7)  
{  
    -webkit-transform: rotatey(280deg) translatez(300px);  
}  
  
li:nth-child(8)  
{  
    -webkit-transform: rotatey(320deg) translatez(300px);  
}  
  
li:nth-child(9)  
{  
    -webkit-transform: rotatey(360deg) translatez(300px);  
}  

div#stage作为舞台,设置perspective,每个li分别设置rotatey,以及translatez;然后我们会div#container设置了-webkit-transform-style: preserve-3d;transform-style: flat | preserve-3d其中flat值为默认值,表示所有子元素在2d平面呈现。preserve-3d表示所有子元素在3d空间中呈现。如果对一个元素设置了transform-style的值为preserve-3d,它表示不执行平展操作,他的所有子元素位于3d空间中。一般情况下,此属性用于3d动画效果的执行元素,即就是它要应用3d动画效果,所以它的子元素都应该在3d空间。

有一点要注意:本例子,其实正在的动画效果,在于鼠标点击,div#container在不端的改变rotatey,所有的图片元素均在div#container中,且已经展现为旋转木马效果,现在要做的就是旋转这个木马,所以只需要每次改变div#container的rotatey 40角度即可。

免费资源网 - https://freexyz.cn/
返回顶部
顶部
网站地图