mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-02 06:06:41 +01:00
Limit iterations for image hover position animation
This commit is contained in:
parent
65c2fb3648
commit
7b6d30f37d
1 changed files with 2 additions and 2 deletions
|
@ -319,7 +319,7 @@
|
|||
}
|
||||
}
|
||||
.status .media img:hover {
|
||||
animation: position-object 5s ease-in-out 1s infinite;
|
||||
animation: position-object 5s ease-in-out 1s 5;
|
||||
}
|
||||
.status .media video {
|
||||
width: 100%;
|
||||
|
@ -398,7 +398,7 @@
|
|||
border-inline-end: 1px solid var(--outline-color);
|
||||
}
|
||||
.card:hover .image {
|
||||
animation: position-object 5s ease-in-out 1s infinite;
|
||||
animation: position-object 5s ease-in-out 1s 5;
|
||||
}
|
||||
.card p {
|
||||
margin: 0;
|
||||
|
|
Loading…
Reference in a new issue