https://pvzm.net/ to play [Read-only GitHub mirror] pvzm.net
modded vs pvz plants-vs-zombies plantsvszombies javascript online zombie noads jspvz pvzm game plants plant
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix

Clay db9de8fe cae5164d

+5 -11
+1 -11
game/Custom.css
··· 1368 1368 } 1369 1369 } 1370 1370 1371 - @keyframes credits_finale_fade { 1372 - 0%, 1373 - 90% { 1374 - opacity: 0; 1375 - } 1376 - 100% { 1377 - opacity: 1; 1378 - } 1379 - } 1380 - 1381 1371 #dMenu_credits { 1382 1372 text-align: center; 1383 1373 background-color: #000; ··· 1390 1380 left: 50%; 1391 1381 transform: translate(-50%, -50%) scale(1.3); 1392 1382 opacity: 0; 1393 - animation: credits_finale_fade 75s linear forwards; 1383 + transition: opacity 2s ease-in; 1394 1384 font-family: "houseofterrormedium" !important; 1395 1385 text-transform: uppercase; 1396 1386 & * {
+4
game/menu/js/credits.js
··· 1 1 PlaySound2("ZombiesOnYourLawn", true); 2 2 AllAudioPaused(); 3 + 4 + menuContainer.querySelector(".content").addEventListener("animationend", () => { 5 + menuContainer.querySelector(".credits-finale").style.opacity = "1"; 6 + });