他的龙根本太大了_动漫美女被吸乳视频漫画_欧美xxxx性疯狂bbbb_天天看天天爽天天摸天天添

html5+css3實(shí)現(xiàn)2D-3D動(dòng)畫(huà)效果實(shí)例

2020-3-1    前端達(dá)人

html5+css3實(shí)現(xiàn)2D-3D動(dòng)畫(huà)效果實(shí)例

主要實(shí)現(xiàn)的功能就是一些2D、3D的動(dòng)畫(huà)效果,如平移、縮放、旋轉(zhuǎn)等等。



文章目錄

html5+css3實(shí)現(xiàn)2D-3D動(dòng)畫(huà)效果實(shí)例

2D變換

3D變換

2D中應(yīng)用實(shí)現(xiàn)案例

3D中應(yīng)用實(shí)現(xiàn)案例

css3動(dòng)畫(huà)

2D變換

是在一個(gè)平面對(duì)元素進(jìn)行的操作。

可以對(duì)元素進(jìn)行水平或者垂直位移、旋轉(zhuǎn)或者拉伸.

1

2

*2d對(duì)下面面坐標(biāo)系簡(jiǎn)單分析如下:

(1).默認(rèn)狀態(tài)下,x軸是水平的,向右為正。

(2).默認(rèn)狀態(tài)下,y軸是垂直的,向下為正,這與傳統(tǒng)的數(shù)學(xué)坐標(biāo)系不同。


20200229102614292.png



3D變換

2d場(chǎng)景,在屏幕上水平和垂直的交叉線x軸和y軸
3d場(chǎng)景,在垂直于屏幕的方法,相對(duì)于2d多出個(gè)z軸



20200229102729418.png

下面首先需要了解2D、3D中的功能函數(shù):

位移 translate()
translateX() 方法,元素在其 X 軸以給定的數(shù)值進(jìn)行位置移動(dòng)
translateY() 方法,元素在其 Y 軸以給定的數(shù)值進(jìn)行位置移動(dòng)
縮放scale()
scaleX():相當(dāng)于scale(sx,1)。表示元素只在X軸(水平方向)縮放元素,其默認(rèn)值是1。
scaleY():相當(dāng)于scale(1,sy)。表示元素只在Y軸(縱橫方向)縮放元素,其默認(rèn)值是1。
旋轉(zhuǎn)rotate()
rotateX() 方法,元素圍繞其 X 軸以給定的度數(shù)進(jìn)行旋轉(zhuǎn)
rotateY() 方法,元素圍繞其 Y 軸以給定的度數(shù)進(jìn)行旋轉(zhuǎn)
正數(shù)”是順時(shí)針,“負(fù)數(shù)”是逆時(shí)針,單位為“deg”。
傾斜skew()
一個(gè)參數(shù)時(shí):表示水平方向的傾斜角度;
兩個(gè)參數(shù)時(shí):第一個(gè)參數(shù)表示水平方向的傾斜角度,
第二個(gè)參數(shù)表示垂直方向的傾斜角度
3D中多了Z軸,其他屬性值不變

2D中應(yīng)用實(shí)現(xiàn)案例
位移 translate()
效果圖:

2020022912243794.gif


 position: absolute;
    left: 20px; top: 40px;
    transition: 2s;/*過(guò)渡時(shí)間*/
    transform: translateY(-320px);


.box3:hover .box3_h2{
    transform: translateY(0px);
}


<!-- 盒子3:實(shí)現(xiàn)位移 -->
        <div class="box3 box">
            <img class="img_3" src="../16/images/3.png" alt="">
            <div class="box_mm"></div>
            <h2 class="box3_h2">Taylor Swift</h2>
            <p class="box3_p1">I'm so glad you made time to see me. How's life, 
                tell me how's your family? I haven't seen them in a while. 
                You've been good, busier then ever. 
                We small talk, work and the weather Your guard is up and I know why...</p>
        </div>

/* 公共樣式 */
.box{
    width:350px;
    height: 300px;
    position: relative;
    transform: 1s;
    margin: 20px 20px;
    float: left;
}
img{
    display: block;
    width: 350px;
    height: 300px;
}
/* 鼠標(biāo)滑過(guò)覆蓋上方的白色部分 */
.box_mm{
    width:350px;
    height: 300px;
    transform: 1s;
    background-color: #fff;
    position: absolute;/*設(shè)置定位,擋住box,*/
    top: 0;
    opacity: 0;/*透明,0全透明*/
}
h2{
    font-size: 20px;
}

/* 盒子3 */
.box3{
    overflow: hidden;
}
.img_3{
    transition: 2s;
}
.box3_h2{
    color: #fff;
    position: absolute;
    left: 20px; top: 40px;
    transition: 2s;/*過(guò)渡時(shí)間*/
    transform: translateY(-320px);
}
.box3_p1{
    font-size: 14px;
    width: 320px;
    position: absolute;
    left: 20px; bottom: 80px;
    transition: 2s;
    opacity: 0;
}
/*交互樣式*/
.box3:hover .img_3{
    transform: translateY(-10px);
}
.box3:hover .box3_h2{
    transform: translateY(0px);
}
.box3:hover .box3_p1{
    transform: translateY(-50px);
    opacity: 1;
}


————————————————
版權(quán)聲明:本文為CSDN博主「weixin_43513126」的原創(chuàng)文章,遵循 CC 4.0 BY-SA 版權(quán)協(xié)議,轉(zhuǎn)載請(qǐng)附上原文出處鏈接及本聲明。
原文鏈接:https://blog.csdn.net/weixin_43513126/article/details/104570062

日歷

鏈接

個(gè)人資料

存檔