Animate the video watermark
This commit is contained in:
parent
a3d0cc95f9
commit
095cf1d4ea
|
@ -206,6 +206,9 @@ video {
|
|||
width: 40%;
|
||||
height: 40%;
|
||||
opacity: 0.02;
|
||||
animation-name: subtle-pulsate;
|
||||
animation-duration: 10s;
|
||||
animation-iteration-count: infinite;
|
||||
}
|
||||
.corner-watermark {
|
||||
position: absolute;
|
||||
|
@ -219,4 +222,11 @@ video {
|
|||
.invert-color {
|
||||
filter: invert(100%);
|
||||
}
|
||||
|
||||
/* Animate the primary watermark to pulsate in opacity */
|
||||
@keyframes subtle-pulsate {
|
||||
0% { opacity: 0.02; }
|
||||
50% { opacity: 0.04; }
|
||||
100% { opacity: 0.02; }
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue
Block a user