Sidebar animation is not triggered when loading page

This commit is contained in:
2020-08-16 11:41:03 +02:00
parent 97a5052ad8
commit 7a432921d1
2 changed files with 24 additions and 8 deletions

View File

@@ -12,6 +12,20 @@
{% block additional_head %}
{% endblock additional_head %}
<script>
document.addEventListener("DOMContentLoaded", function(){
Array.from(document.getElementsByClassName('LP-Main__Sidebar')).forEach(function(element){
element.classList.add('LP-Main__Sidebar--hidden')
})
setTimeout(function(){
Array.from(document.getElementsByClassName('LP-Main__Sidebar')).forEach(function(element){
element.classList.remove('LP-Main__Sidebar--hidden')
})
}, 500)
})
</script>
</head>
<body>