*** Wartungsfenster jeden ersten Mittwoch vormittag im Monat ***

Skip to content
Snippets Groups Projects

Seasonal weather

Merged Moser, Maximilian requested to merge mm/snowfall into master
6 files
+ 39
3
Compare changes
  • Side-by-side
  • Inline
Files
6
 
// This file is part of InvenioRDM
 
// Copyright (C) 2023 TU Wien.
 
//
 
// Invenio Theme TUW is free software; you can redistribute it and/or modify it
 
// under the terms of the MIT License; see LICENSE file for more details.
 
 
import $ from "jquery";
 
import snowFall from "jquery-snowfall";
 
 
document.addEventListener("DOMContentLoaded", function () {
 
$(document).snowfall({
 
flakeCount: 100,
 
maxSpeed: 5,
 
minSize: 3,
 
maxSize: 10,
 
flakeColor: "#FEFEFE",
 
round: true,
 
shadow: true,
 
});
 
});
Loading