diff --git a/src/components/VideoFeed.vue b/src/components/VideoFeed.vue
index 6d39d66..3aa4868 100644
--- a/src/components/VideoFeed.vue
+++ b/src/components/VideoFeed.vue
@@ -140,6 +140,7 @@ export default {
"There are two QR codes on each video: the one in the bottom-right corner is intentionally made visible and obvious " +
"to everybody, and a second (subtle) copy of the code spans across the center/middle of the video and pulsates in " +
"transparency over time.",
+ backgroundDismissable: true,
});
},
@@ -278,7 +279,7 @@ video {
height: 40%;
opacity: 0.02;
animation-name: subtle-pulsate;
- animation-duration: 10s;
+ animation-duration: 20s;
animation-iteration-count: infinite;
}
.corner-watermark {
@@ -297,8 +298,14 @@ video {
/* Animate the primary watermark to pulsate in opacity */
@keyframes subtle-pulsate {
- 0% { opacity: 0.02; }
- 50% { opacity: 0.06; }
+ 0% { opacity: 0.02; filter: invert(0%); }
+ 25% { opacity: 0.05; }
+ 50% { opacity: 0.02; }
+ 75% { opacity: 0.05; }
+ 90% { opacity: 0.1 }
+ 91% { opacity: 0.2; filter: invert(0%); }
+ 95% { opacity: 0.2; filter: invert(100%); }
+ 99% { opacity: 0.1; filter: invert(0%); }
100% { opacity: 0.02; }
}