DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> HTML基礎知識 >> HTML5詳解 >> CSS3+HTML5特效3 - 縱向無縫滾動
CSS3+HTML5特效3 - 縱向無縫滾動
編輯:HTML5詳解     

老慣例,先看例子。

This is a test 1. This is a test 2. This is a test 3. This is a test 4. This is a test 5. This is a test 1.

實現原理:

1. 利用CSS3的@keyframes規則創建動畫效果;

2. 使用CSS3的animation效果完成滾動切換。

 CSS代碼

@-webkit-keyframes scrollText1 {
    0%{
        -webkit-transform: translateY(0px);
    }
    20%{
        -webkit-transform: translateY(-30px);
    }
    40%{
        -webkit-transform: translateY(-60px);
    }
    60%{
        -webkit-transform: translateY(-90px);
    }
    80%{
        -webkit-transform: translateY(-120px);
    }
    100%{
        -webkit-transform: translateY(-150px);
    }
}

@keyframes scrollText1 {
    0%{
        transform: translateY(0px);
    }
    20%{
        transform: translateY(-30px);
    }
    40%{
        transform: translateY(-60px);
    }
    60%{
        transform: translateY(-90px);
    }
    80%{
        transform: translateY(-120px);
    }
    100%{
        transform: translateY(-150px);
    }
}

.box3{
  position: relative;
  top: 20px;
  left: 20px;
  width: 200px;
  height: 30px;
  overflow: hidden;
  border:1px solid #ccc;
}

.border3{
  top: 0px;
  -webkit-animation:scrollText1 8s infinite  cubic-bezier(1,0,0.5,0) ;
  animation:scrollText1 8s infinite  cubic-bezIEr(1,0,0.5,0) ;
}

.border3 div{
  height: 30px;
}

.border3:hover{
  animation-play-state:paused;
  -webkit-animation-play-state:paused;
}

CSS代碼說明:

  1. @-webkit-keyframes@keyframes定義了從0% ~ 100%之間,每過20%的時間,向上移動30px,總共有6次移動;
  2. .box3 定義外容器的基本屬性
  3. .border3 定義了內容器的屬性,-webkit-animation:scrollText1 8s infinite cubic-bezIEr(1,0,0.5,0) 和 animation:scrollText1 8s infinite cubic-bezIEr(1,0,0.5,0) 定義了用8s種循環一次,無限循環已經移動是的效果;
  4. .border3 div 定義了縱向滾動內容的基本樣式;
  5. .border3:hover 定義了鼠標移入容器是的效果,animation-play-state:paused 及 -webkit-animation-play-state:paused 定義了動畫暫停;

Html代碼

<div class="box3">
  <div class="border3">
    <div>This is a test 1.</div>
    <div>This is a test 2.</div>
    <div>This is a test 3.</div>
    <div>This is a test 4.</div>
    <div>This is a test 5.</div>
    <div>This is a test 1.</div>
  </div>
</div>

Html代碼說明:

定義了6條信息可以縱向滾動,其中前5條是真正縱向滾動的信息,第6條和第1條信息是一樣的,原因很簡單,因為使用了@keyframes方式來實 現動畫效果,第1條信息的效果是默認為停止的,所以用第6條信息制作一個替代方法,在第一次循環結束後,可以無縫繼續滾動,大家可以去掉第6條試一下,就 可以看見效果了。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved