Added a lot of components
This commit is contained in:
parent
08f8d90f3d
commit
c94493a3c5
68 changed files with 1030 additions and 8 deletions
28
src/app/hero/hero.component.scss
Normal file
28
src/app/hero/hero.component.scss
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
@keyframes blink {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes blink-inverted {
|
||||
from {
|
||||
opacity: 1;
|
||||
}
|
||||
to {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
#asciiPhoto {
|
||||
opacity: 0;
|
||||
animation: blink-inverted 2s 1;
|
||||
}
|
||||
|
||||
#originalPhoto {
|
||||
opacity: 1;
|
||||
animation: blink 2s 1;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue