强化下 PE rspective和transform:translateZ的用法。传统的商品展示或许并不能很好的吸引用户的注意力,但是如果在展示中添加适当的3D元素,~说不定效果不错哈~
效果图:
说明一下:这个创意不是我想的,哈~模仿 别人 的,创意 应该 是w3cplus上的。当然了,重点是教大家如何做,就当高仿了~
首先,先教大家 利用 CSS3 制作 一个正方体:
在木有CSS前,这样的立方体,应该很难制作吧~嗯,我 觉得 很难~
ht ML :
<body> <div class="wapper"> <div class="c ub e"> <div class="side front">1</div> <div class="side back">6</div> <div class="side right">4</div> <div class="side left">3</div> <div class="side top">5</div> <div class="side bottom">2</div> </div> </div> </body>
wapper为此效果的舞台,即设置perspective的元素,如果多个元素共享一个舞台,那么从一个视线观察所以的元素的效果是不一样的,就相当我们 正常 情况下,站在一排倾斜成45度的门前面,每个门对于我们视线来说,角度是不同的;div # cube代表一个立方体,然后6个DIV分别代表每个面。
div#cube设置transform -s tyle: PR eserve-3d,然后每个元素设置rotate和translateZ
现在所有的面重叠在同一个平面上,我们分别让:
font往前即Z轴 方向 移动 半 个边长(translateZ(50px))的 距离 即50px;
back先绕Y轴旋转180度,这样让字体是对外的,然后translateZ(50px),因为此时已经旋转了180度,所以tanslateZ是向下的,
同理,其他面分别绕X轴 或者 Y轴旋转90度,然后translateZ(50px)
CSS:
.wapper { m arg in: 100px auto 0; width: 100px; h ei ght: 100px; - webkit -perspective: 1200px; font- Size: 50px; font-weight : bold; color: #fff; } .cube { pos IT ion: relative; width: 100px; -webkit -t ransform: rotateX(-40 deg ) rotateY(32deg); -webkit-transform-style: preserve-3d; } .side { text-align: center ; line-height: 100px; width: 100px; height: 100px; background: rgba(255, 99, 71, 0.6); border: 1px solid rgba(0, 0, 0, 0.5); position: absolute; } .front { -webkit-transform: translateZ(50px); } .top { -webkit-transform: rotateX(90deg) translateZ(50px); } .right { -webkit-transform: rotateY(90deg) translateZ(50px); } .left { -webkit-transform: rotateY(-90deg) translateZ(50px); } .bottom { -webkit-transform: rotateX(-90deg) translateZ(50px); } .back { -webkit-transform: rotateY(-180deg) translateZ(50px); }
对于显示效果,可以 调节 perspective的距离~
好了,立方体理解了,那么这个商品展示就没什么难度了;两个DIV分别代表两个面,一个是图片,一个是介绍,初始时,介绍绕X轴先旋转90deg,然后当鼠标移动时,将整个 盒子 绕x轴旋转90deg即可。
HTML:
<!DOCTYPE html> <html> <head> <title></title> < ;m eta charset="utf-8"> <link hr ef="css/reset.css" rel="stylesheet" type="text/css"> </head> <body> <ul id="content"> <li> <div class="wrapper"> < img src="images/a.png"> <span class="information"> < strong >Contact Form</strong> The easiest way to add a contact form to your shop. </span> </div> </li> <li> <div class="wrapper"> <img src="images/b.jpeg"> <span class="information"> <strong>Contact Form</strong> The easiest way to add a contact form to your shop. </span> </div> </li> <li> <div class="wrapper"> <img src="images/c.png"> <span class="information"> <strong>Contact Form</strong> The easiest way to add a contact form to your shop. </span> </div> </li> </ul> </body> </html>
CSS:
<style type="text/css"> body { font-f ami ly: Tahoma, Arial; } #content { mar gin : 100px auto 0; } #content li, #content .wrapper, #content li img, #content li span { width: 310px; height: 100px; } #content li { cursor: pointer; -webkit-perspective: 4000px; width: 310px; height: 100px; float: left; margin-left: 60px; /*box-shadow: 2px 2px 5px #888888;*/ } #content .wrapper { position: relative; -webkit-transform-style: preserve-3d; -webkit-transition: -webkit-transform .6s; } #content li img { top: 0; border-radius: 3px; box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.3); position: absolute; -webkit-transform: translateZ(50px); -webkit-transition: all .6s; } #content li span { background: -webkit-gra die nt(linear, left top, left bottom, color-stop(0%, rgba(236, 241, 244, 1)), color-stop(100%, rgba(190, 202, 217, 1))); text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5); position: absolute; -webkit-transform: rotateX(-90deg) translateZ(50px); -webkit-transition: all .6s; dis play : block; top: 0; text-align: left; border-radius: 15px; font-size: 12px; padding: 10px; width: 290px; height: 80px; text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5); box-shadow: none; } #content li span strong { display: block; margin: .2em 0 .5em 0; font-size: 20px; font-f am ily: "Oleo Script"; } #content li:hover .wrapper { -webkit-transform: rotateX(95deg); } #content li:hover img { box-shadow: none; border-radius: 15px; } #content li:hover span { box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.3); border-radius: 3px; } </style>
CSS基本在上面已经分析过了,这里说明 一点 ,我们给没件商品弄了一个div.wapper看似是多余,其实不是,因为我们希望每个商品都是正常的90deg翻转,所以我们不能让所有的商品共享一个舞台,于是我们添加了一个div.wapper让他设置transform-style:p rev erse-3d,然后每个li分别设置舞台效果perspective。最终翻转效果实在div.wapper上。
源码点击下载
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
总结
以上是 为你收集整理的 HTML5+CSS3:3D展示商品信息示例 全部内容,希望文章能够帮你解决 HTML5+CSS3:3D展示商品信息示例 所遇到的问题。
如果觉得 网站内容还不错, 推荐好友。
查看更多关于HTML5+CSS3:3D展示商品信息示例的详细内容...