wrzesień

 0    4 fiche    pablojakub
Télécharger mP3 Imprimer jouer consultez
 
question réponse
fetch API (GET)
commencer à apprendre
fetch(url). then(response => return response. json());
fetch API (POST)
commencer à apprendre
fetch(url, {method: 'POST', body: JSON. stringify(data)}). then(response => return response. json();
keyframes
commencer à apprendre
keyframes slide-in {from {transform: translateX(-100%);} to {transform: translateX(0%);} }. box {animation: slide-in 1000ms;}
spinner using keyframes
commencer à apprendre
@keyframes spin {from {transform: rotate(0turn);} to {transform: rotate(1turn);} }. spinner {animation: spin 1000ms; animation-timing-function: linear; animation-iteration-count: infinite;}

Vous devez vous connecter pour poster un commentaire.