wrzesień

 0    4 schede    pablojakub
Scarica mp3 Stampa Gioca Testa il tuo livello
 
Domanda Risposta
fetch API (GET)
inizia ad imparare
fetch(url). then(response => return response. json());
fetch API (POST)
inizia ad imparare
fetch(url, {method: 'POST', body: JSON. stringify(data)}). then(response => return response. json();
keyframes
inizia ad imparare
keyframes slide-in {from {transform: translateX(-100%);} to {transform: translateX(0%);} }. box {animation: slide-in 1000ms;}
spinner using keyframes
inizia ad imparare
@keyframes spin {from {transform: rotate(0turn);} to {transform: rotate(1turn);} }. spinner {animation: spin 1000ms; animation-timing-function: linear; animation-iteration-count: infinite;}

Devi essere accedere per pubblicare un commento.