真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Html5中如何實(shí)現(xiàn)百葉窗效果

本篇內(nèi)容介紹了“Html5中如何實(shí)現(xiàn)百葉窗效果”的有關(guān)知識,在實(shí)際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

創(chuàng)新互聯(lián)建站專注于網(wǎng)站建設(shè)|網(wǎng)站建設(shè)維護(hù)|優(yōu)化|托管以及網(wǎng)絡(luò)推廣,積累了大量的網(wǎng)站設(shè)計(jì)與制作經(jīng)驗(yàn),為許多企業(yè)提供了網(wǎng)站定制設(shè)計(jì)服務(wù),案例作品覆蓋建筑動畫等行業(yè)。能根據(jù)企業(yè)所處的行業(yè)與銷售的產(chǎn)品,結(jié)合品牌形象的塑造,量身設(shè)計(jì)品質(zhì)網(wǎng)站。

1,百葉窗布局 用定位(position: absolute)覆蓋在content布局之上,背景設(shè)置為透明(background-color: transparent)
2,keyframes定義淡入淡出(透明度改變)和百葉窗口效果動畫。
3,啟動動畫是通過設(shè)置DOM的className屬性的方法,animator.className = 'baiyeWindow'; 監(jiān)聽動畫完成事件'animationend',要清除className屬性。
4,在內(nèi)容布局切換的事件,調(diào)用啟動動畫方法,兩個布局都需要綁定切換事件 ng-click="switchLayout()"
5,動畫執(zhí)行時序圖:

Html5中如何實(shí)現(xiàn)百葉窗效果
 

html代碼:



...
         
  •         
  •         
  •         
  •   

    css樣式代碼:

      //談入談出效果
     .fade-animation{
            @-webkit-keyframes fadeInOut {
              0% {
                opacity: 1;
              }
              50% {
                opacity: 0;
              }
              100% {
                opacity: 1;
              }
            }
        @keyframes fadeInOut {
              0% {
                opacity: 1;
              }
              50% {
                opacity: 0;
              }
              100% {
                opacity: 1;
              }
            }
            animation: fadeInOut 1s ease-in;
            -webkit-animation: fadeInOut 1s ease-in;
          }
          //百葉窗效果
          .baiyeWindow{
            width: 100%;
            height: 1.68rem;
            position: absolute;
            left: 0;
            top: 1.2rem;
            li{
              height: 0.42rem;
              line-height: 40px;
              overflow: hidden;
              background-color: transparent;
              .ye{
                -webkit-animation: slideOut 1s ease-in-out;
                animation: slideOut 1s ease-in-out;
                width: 100%;
                background-color: rgba(0,0,0,.2);
                position: relative;
                top: 50%;
              }
            }
            @-webkit-keyframes slideOut {
              0% {
                padding-bottom: 0;
                top: 50%;
              }
              100% {
                padding-bottom: 40px;
                top: 0;
              }
            }
            @keyframes slideOut {
              0% {
                padding-bottom: 0;
                top: 50%;
              }
              100% {
                padding-bottom: 40px;
                top: 0;
              }
            }
          }

    JS代碼:

    //切換布局
    $scope.switchLayout = function(){
        ...
        $scope.startBaiYeWindow();
        //啟動動畫0.5s后,控制布局顯示/隱藏
        $timeout(function () {
                 if ($scope.show) {
                      $scope.show = false;
                  } else {
                        ....
                  }
         }, 500);
     }
    //啟動動畫
            $scope.startBaiYeWindow = function () {
                var animator = document.getElementById('baiyeWindow');
                var animatorFadeInOut = document.getElementById('fadeInOut');
                animator.addEventListener('animationend', function () {
                    animator.className = '';
                    animatorFadeInOut.className = 'content';
                });
                $timeout(function () {
                    animator.className = 'baiyeWindow';
                    animatorFadeInOut.className = 'content fade-animation';
                }, 0);
            };

    “Html5中如何實(shí)現(xiàn)百葉窗效果”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!


    網(wǎng)頁標(biāo)題:Html5中如何實(shí)現(xiàn)百葉窗效果
    本文鏈接:http://weahome.cn/article/ghhepc.html

    其他資訊

    在線咨詢

    微信咨詢

    電話咨詢

    028-86922220(工作日)

    18980820575(7×24)

    提交需求

    返回頂部