animation動畫組件在鴻蒙中的應用&鴻蒙的定時函數和js的動畫效果

目錄:css

一.關鍵幀(keyframes)css3

二.animation屬性數組

鴻蒙的定時函數和js的動畫ide

今天給你們介紹的是animation動畫組件在鴻蒙中的應用.要實現一個 animation 動畫,須要使用兩個屬性@keyframes 和 animation.函數

   

  一.關鍵幀(keyframes) :定義動畫在不一樣階段的狀態.所製做的動畫就根據keyframes中定義的規則運動. 它的語法結構以下兩種:1.百分比來規定改變發生的時間,2.經過關鍵詞 "from" 和 "to",等價於 0% 和 100%. 以下圖:post

 

animation動畫組件在鴻蒙中的應用&鴻蒙的定時函數和js的動畫效果

animation動畫組件在鴻蒙中的應用&鴻蒙的定時函數和js的動畫效果.animation屬性:flex

(1)animation-name:指定選用的動畫的名字(自定義),須要和keyframes中的name一致動畫

(2)animation-delay:定義動畫是從什麼時候開始播放this

(3)animation-iteration-count:定義咱們的動畫播放的次數.次數能夠是1次或者無限循環.默認值只播放一次url

(4)animation-fill-mode:定義動畫模式,即指給定動畫播放先後應用元素的樣式,具體取值有none ,forwards,backwards,both .這個屬性我的感受提及來比較抽象.

(5)animation-timing-function:時間函數,控制動畫的執行速度.linear 勻速; ease-in 加速; ease-out 減速; ease-in-out 先加速後減速
(6)animation-play-state 動畫運行狀態 paused:暫停 ; running 運行

注意:在css3的animation動畫中有一個animation-direction的屬性,可是我在鴻蒙中應用這個時,剛開始我覺得是官方沒有提示,本身寫出來運行後也沒有想要的效果,因此我猜鴻蒙的animation組件中沒有這個屬性(如有或者有替代的屬性請各位大佬指出.)
 

視圖渲染:

<div class="container">
    <div class="oneview">
    </div>
   <div class="twoview">
        <image class="img1" src="common/zhou.jpg">
        </image>
    </div>
</div>

 

css屬性設置:

.container {
    width: 100%;
    height: 1200px;
    display: flex;
  flex-direction: column;
}
.oneview{
    width: 300px;
    height: 300px;
    border-radius: 150px;
    background-color: skyblue;
/**動畫名稱**/
    animation-name: one1;
/**動畫時間**/
    animation-duration: 6s;
/**動畫執行次數**/
    animation-iteration-count: infinite;
/**動畫執行速度**/
    animation-timing-function: ease-in-out;
/**動畫模式**/
    animation-fill-mode: forwards;/**保持當前**/
}
/**動畫執行規則**/
@keyframes one1
{   from{
    transform: translateX(0px);
        }
to{
    transform: translateX(300px);
}
    }

.twoview{
    width: 400px;
    height: 400px;
    border-radius: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: lightgrey;
}
.img1{
    width: 300px;
    height: 300px;
    border-radius: 150px;
/**動畫名稱**/
    animation-name: one2;
/**動畫時間**/
    animation-duration: 8s;
/**動畫執行次數**/
    animation-iteration-count: infinite;
/**動畫執行速度**/
    animation-timing-function: linear;
}
@keyframes one2{
         from{
             transform: rotate(0deg) ;
         }
        to{
            transform: rotate(360deg);
        }
}

 

 

 

     效果以下:

   animation動畫組件在鴻蒙中的應用&鴻蒙的定時函數和js的動畫效果

 

-------------------------------------------------------------------------------------分割線--------------------------------------------------------------------------------------

 

 

鴻蒙的定時函數和js的動畫:

任務:採用js的定時函數作一個定時器,每隔一秒,數字減一,到0時定時任務結束,而後跳轉頁面,

 

定時函數setinterval:方法會不停地循環調用函數,以毫秒爲單位,直到使用 clearInterval() 明確中止該函數

clearInterval() 函數的參數即 setInterval() 返回的id值,以下圖:

animation動畫組件在鴻蒙中的應用&鴻蒙的定時函數和js的動畫效果注意事項:一在執行計時器的倒計時時,經過this.num傳遞給視圖層時,咱們發現並無執行這個操做.緣由出在this這個關鍵字上.this所執行的操做跟它所處的位置有關,如今this處於function這個函數中,因此它表明的是這個函數對象,並非當前頁面,所以,不會執行this.num--的操做,因此在這裏咱們須要合理規避關鍵字,作一次關鍵字替換.這樣this就能夠引用num,執行減減的操做.

animation動畫組件在鴻蒙中的應用&鴻蒙的定時函數和js的動畫效果二.在定義動畫的時候,經過引用頁面對象時,鴻蒙給的提示框,咱們能夠發現動畫規則對應的是一個數組,動畫選項對應的是一個鍵,

animation動畫組件在鴻蒙中的應用&鴻蒙的定時函數和js的動畫效果

 

 

代碼展現以下:

js業務邏輯層:

import router from '@system.router';
export default {
    data: {
        title: 'World',
        num:10,
        an1:"",
        an2:""
    },
    onInit() {
        let  that=this;
        let aa=setInterval(function () {
            that.num--;
            if(that.num==0){
                //settimeout清楚函數,只執行一次
                setTimeout(function(){
                    router.push({
                        uri:"pages/categories/categories"
                    })
                })

                clearInterval(aa);
            }
        },1000)
    },
    onShow(){
    this.loadan1();
    this.loadan2();
    },
    loadan1(){

        //動畫的規則
        let key=[{transform:{translate:'1000px -200px'}},
                 {transform:{translate:'390px 300px'}}
                 ];
        //動畫的選項
        let options={
            duration:8000,
            easing:"linear",
            fill:"forwards",
            iterations:1    //執次數
        }
        //經過id做用於topone
        this.an1=this.$element("topone").animate(key,options);
        //播放動畫
        this.an1.play();
    },
    loadan2(){
        //動畫的規則
        let key=[{transform:{translate:'-800px  200px'}},
                 {transform:{translate:'-100px -200px'}}
        ];
        //動畫的選項
        let options={
            duration:8000,
            easing:"linear",
            fill:"forwards",
            iterations:1    //執次數
        }
        //經過id做用於topone
        this.an2=this.$element("bottomone").animate(key,options);
        //播放動畫
        this.an2.play();
    }

}

 

視圖層:

<div class="container">

    <div class="tv1">
        <div class="view1"  id="topone">
            <text class="txt2">{{"來嘛,吃澀!"}} </text>
        </div>
    </div>
<div class="tv2">
    <div class="yuan">
        <text class="txt1">
        {{num}}
        </text>
    </div>
</div>
    <div class="tv3">
        <div class="view2"  id="bottomone">
            <text class="txt2">{{"歡迎光顧"}} </text>
        </div>
    </div>
</div>

 

 

css屬性設置:

.container {

    width: 100%;
    height: 1500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: skyblue;
}
.tv1{
    width: 100%;
    height: 20%;
    /**background-color: orange;**/
    display: flex;
    justify-content: center;
    align-items: center;
}
.tv2{
    width: 100%;
    height: 53%;
    /**background-color: skyblue;**/
    display: flex;
    justify-content: center;
    align-items: center;
}
.tv3{
    width: 100%;
    height: 27%;
    /**background-color: red;**/
    display: flex;
    justify-content: center;
    align-items: center;
}
.view1{
    position: absolute;
    top:0px;
    left: -250px;
    width: 400px;
    height: 200px;
    border: 1p solid lightgrey;
    background-color: black;
    opacity: 0.1;
    border-radius: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.view2{
    position: absolute;
    bottom:200px;
    left: 250px;
    width: 400px;
    height: 200px;
    border: 1p solid lightgrey;
    background-color: black;
    opacity: 0.1;
    border-radius: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.txt2{
    font-size: 60px;
    font-weight: bold;
    font-family: sans-serif;
    color: white;
}

.yuan{
    width: 360px;
    height: 360px;
    border-radius: 180px;
    background-color: black;
    opacity: 0.1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.txt1{
    font-family: sans-serif;
    font-weight: bold;
    font-size: 300px;
    color: white;
}

 

 

效果展現:

animation動畫組件在鴻蒙中的應用&鴻蒙的定時函數和js的動畫效果

 

做者:noutsider

想了解更多內容,請訪問: 51CTO和華爲官方戰略合做共建的鴻蒙技術社區https://harmonyos.51cto.com

相關文章
相關標籤/搜索