CSS3如何?全景的動畫效果(附代碼)

來源:互聯網
上載者:User
本篇文章給大家帶來的內容是關於CSS3如何?全景的動畫效果(附代碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有所協助。

基本代碼

html代碼:

<div class="panorama"></div>

首先定義一些基本的樣式和動畫:

.panorama {  width: 300px;  height: 300px;  background-image: url(http://7vilbi.com1.z0.glb.clouddn.com/blog/6608185829213862083.jpg);  background-size: auto 100%;  cursor: pointer;  animation: panorama 10s linear infinite alternate;}@keyframes panorama {  to {    background-position: 100% 0;  }}

background-size: auto 100%; 這段代碼的意思是讓圖片的高等於容器的高,並且水平方向自動,即圖片最左邊貼著容器左側。

執行動畫的流程是:周而復始、往複交替、線性並且時間周期是10s。

手動控制動畫執行

現在我們實現當滑鼠懸浮於圖片時才讓它動起來,滑鼠離開讓它靜止。

需要用到這個屬性animation-play-state: paused | running,它表示動畫的兩個狀態:暫停運行

完整CSS代碼:

.panorama {  width: 300px;  height: 300px;  background-image: url(http://7vilbi.com1.z0.glb.clouddn.com/blog/6608185829213862083.jpg);  background-size: auto 100%;  cursor: pointer;  animation: panorama 10s linear infinite alternate;  animation-play-state: paused;}.panorama:hover,.panorama:focus {  animation-play-state: running;}@keyframes panorama {  to {    background-position: 100% 0;  }}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.