intro
This commit is contained in:
parent
42931f2925
commit
1dac4d2bfb
1 changed files with 17 additions and 0 deletions
|
@ -3,6 +3,7 @@ from colorama import Style, Fore
|
|||
|
||||
from time import sleep
|
||||
from os import system
|
||||
import sys
|
||||
|
||||
|
||||
frames = []
|
||||
|
@ -18,6 +19,22 @@ def animate(n):
|
|||
sleep(0.2)
|
||||
system('clear')
|
||||
|
||||
def intro():
|
||||
with open('animation/intro2.txt', 'r') as f:
|
||||
anim = f.read()
|
||||
system('clear')
|
||||
print(f'{Fore.MAGENTA}', end='')
|
||||
for ch in anim:
|
||||
print(ch, end='')
|
||||
sys.stdout.flush()
|
||||
sleep(0.01)
|
||||
# for i in range(5):
|
||||
# system('clear')
|
||||
# print(anim)
|
||||
# sleep(0.4)
|
||||
print(f'{Style.RESET_ALL}')
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
from sys import argv
|
||||
animate(int(argv[1]))
|
||||
|
|
Loading…
Reference in a new issue