首頁 > web前端 > H5教程 > HTML5/CSS3專題 3D展示商品資訊的經典案例

HTML5/CSS3專題 3D展示商品資訊的經典案例

黄舟
發布: 2017-03-10 15:55:53
原創
1915 人瀏覽過

強化下perspective和transform:translateZ的用法。傳統的商品展示或許並不能很好的吸引用戶的注意力,但是如果在展示中添加適當的3D元素,~說不定效果不錯哈~

效果圖:


#說明:這個創意不是我想的,哈~模仿別人的,創意應該是w3cplus上的。當然了,重點是教大家如何做,就當高仿了~

首先,先教大家利用CSS3製作一個立方體:



在木有CSS前,這樣的立方體,應該很難製作吧~嗯,我覺得很難~

html:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

<body>

 

 

<p class="wapper">

    <p class="cube">

        <p class="side  front">1</p>

        <p class="side   back">6</p>

        <p class="side  right">4</p>

        <p class="side   left">3</p>

        <p class="side    top">5</p>

        <p class="side bottom">2</p>

    </p>

</p>

 

</body>

登入後複製

wapper為此效果的舞台,即設定perspective的元素,如果多個元素共享一個舞台,那麼從一個視線觀察所以的元素的效果是不一樣的,就相當我們正常情況下,站在一排傾斜成45度的門前面,每個門對我們視線來說,角度是不同的;p#cube代表一個立方體,然後6個p分別代表每個面。

p#cube設定transform-style:preserve-3d,然後每個元素設定rotate和translateZ

現在所有的面重疊在同一個平面上,我們分別讓:

font往前即Z軸方向移動半個邊長(translateZ(50px))的距離即50px;

back先繞Y軸旋轉180度,這樣讓字體是對外的,然後translateZ (50px),因為此時已經旋轉了180度,所以tanslateZ是向下的,

#同理,其他面分別繞X軸或Y軸旋轉90度,然後translateZ(50px)


CSS:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

.wapper

       {

           margin: 100px auto 0;

           width: 100px;

           height: 100px;

           -webkit-perspective: 1200px;

           font-size: 50px;

           font-weight: bold;

           color: #fff;

       }

 

       .cube

       {

 

           position: relative;

           width: 100px;

           -webkit-transform: rotateX(-40deg) 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的距離~

好了,立方體理解了,那麼這個商品展示就沒什麼難度了;兩個p分別代表兩個面,一個是圖片,一個是介紹,初始時,介紹繞X軸先旋轉90deg,然後當滑鼠移動時,將整個盒子繞x軸旋轉90deg即可。

###HTML:###

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

<!DOCTYPE html>

<html>

<head>

    <title></title>

    <meta charset="utf-8">

    <link href="css/reset.css" rel="stylesheet" type="text/css">

 

     

</head>

<body>

 

 

<ul id="content">

 

    <li>

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

        </p>

    </li>

 

    <li>

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

        </p>

 

    </li>

 

    <li>

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

        </p>

 

    </li>

 

</ul>

 

 

</body>

</html>

登入後複製
###CSS:###

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

<style type="text/css">

        body

        {

            font-family: Tahoma, Arial;

        }

 

        #content

        {

            margin: 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-gradient(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;

            display: 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-family: "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基本上在上面已經分析過了,這裡說明一點,我們給沒件商品弄了一個p. wapper看似多餘,其實不是,因為我們希望每個商品都是正常的90deg翻轉,所以我們不能讓所有的商品共享一個舞台,於是我們添加了一個p.wapper讓他設置transform-style:preverse- 3d,然後每個li分別設定舞台效果perspective。最終翻轉效果實在p.wapper上###################

以上是HTML5/CSS3專題 3D展示商品資訊的經典案例的詳細內容。更多資訊請關注PHP中文網其他相關文章!

本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板