wrzesień

 0    4 fiszki    pablojakub
ściągnij mp3 drukuj graj sprawdź się
 
Pytanie Odpowiedź
fetch API (GET)
rozpocznij naukę
fetch(url). then(response => return response. json());
fetch API (POST)
rozpocznij naukę
fetch(url, {method: 'POST', body: JSON. stringify(data)}). then(response => return response. json();
keyframes
rozpocznij naukę
keyframes slide-in {from {transform: translateX(-100%);} to {transform: translateX(0%);} }. box {animation: slide-in 1000ms;}
spinner using keyframes
rozpocznij naukę
@keyframes spin {from {transform: rotate(0turn);} to {transform: rotate(1turn);} }. spinner {animation: spin 1000ms; animation-timing-function: linear; animation-iteration-count: infinite;}

Musisz się zalogować, by móc napisać komentarz.