We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f96a70 commit d243fb1Copy full SHA for d243fb1
1 file changed
assets/script.js
@@ -17,11 +17,11 @@ function runCitationScripts() {
17
const citations = document.querySelectorAll(".citation");
18
citations.forEach((citation, index) => {
19
console.log('Setting animation delay for citation', index, citation);
20
- citation.style.animationDelay = `${(index + 1) * 0.4}s`;
+ citation.style.animationDelay = `${index * 0.2}s`;
21
});
22
}
23
24
-document.addEventListener("DOMContentLoaded", () => {
+window.addEventListener("load", () => {
25
const papers = document.querySelectorAll(".paper-item");
26
27
papers.forEach((paper, index) => {
0 commit comments