Replace jQuery animation with CSS transition on Hitomi.la hover reveal effect for preview images to fix stutter or delay.
Hitomi.la cover animation by qb20nh
Details
Authorqb20nh
LicenseNo License
Categoryhitomi.la
Created
Updated
Size286 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Use with https://greasyfork.org/en/scripts/483114-hitomi-la-cover-animation
Source code
/* ==UserStyle==
@name Hitomi.la cover animation
@version 20231226.05.07
@namespace ?
==/UserStyle== */
@-moz-document domain("hitomi.la") {
.dj-img1 {
transition: right 400ms ease;
}
.dj-img-cont:has(.dj-img2:hover) > .dj-img1 {
right: -100px;
}
}