使用 CSS 對背景位置屬性進行動畫處理
使用 @keyframes 對背景位置進行動畫處理。若要使用 CSS 對 background-position 屬性實施動畫處理,你可以嘗試執行以下程式碼
例項
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 500px;
height: 400px;
background: yellow;
background-image: url('https://tutorialspoint.tw/latest/microservice_architecture.png');
animation: myanim 3s infinite;
background-position: bottom left;
}
@keyframes myanim {
20% {
background-color: maroon;
background-position: bottom right;
}
}
</style>
</head>
<body>
<div></div>
</body>
</html>
廣告
資料結構
網路
關係型資料庫管理系統
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP