Skip to content

Commit

Permalink
animations display in full frame #110
Browse files Browse the repository at this point in the history
  • Loading branch information
PranshulGG committed Dec 23, 2024
1 parent 74c6a62 commit 36831ba
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/src/main/assets/app/bg_animations.js
Original file line number Diff line number Diff line change
Expand Up @@ -1057,6 +1057,7 @@ class Meteor {


document.getElementById('background_animation').setAttribute('running_fog', 'true')
document.getElementById('background_animation').setAttribute('running_fog_fullframe', 'true')

animationContainer1.classList.add('behind_search_animation');
animationContainer2.classList.add('behind_search_animation');
Expand Down Expand Up @@ -1245,9 +1246,13 @@ class Meteor {


document.getElementById('background_animation').style = 'z-index: 1;'
if(document.getElementById('background_animation').getAttribute('running_fog_fullframe')){
document.getElementById('foreground_animation').removeAttribute('running_fog_fullframe');
document.getElementById('background_animation').classList.remove('behind_search_animation');
document.getElementById('foreground_animation').classList.remove('behind_search_animation');
document.documentElement.classList.remove('behind_search_animation_wrap')
}



}
Expand Down

0 comments on commit 36831ba

Please sign in to comment.