- Notifications
You must be signed in to change notification settings - Fork230
CSS Animations#110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merged
vplentinax merged 9 commits intojavascript-tutorial:masterfromtambaqui:animation-css-animationsJun 7, 2020
Uh oh!
There was an error while loading.Please reload this page.
Merged
CSS Animations#110
Changes fromall commits
Commits
Show all changes
9 commits Select commitHold shift + click to select a range
d698804 CSS Animations chapter translation
tambaquia308952 CSS Animations chapter translation corrections
tambaqui41b55a8 Update 7-animation/2-css-animations/article.md
vplentinax6ab2c7b Update 7-animation/2-css-animations/article.md
vplentinaxf9e152e Update 7-animation/2-css-animations/article.md
vplentinax6df4b3d Update 7-animation/2-css-animations/article.md
vplentinax84d231f Update 7-animation/2-css-animations/article.md
vplentinax1e44ca7 Update 7-animation/2-css-animations/2-animate-logo-bezier-css/task.md
vplentinax2aedc97 Update 7-animation/2-css-animations/article.md
vplentinaxFile filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
8 changes: 4 additions & 4 deletions7-animation/2-css-animations/1-animate-logo-css/solution.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,17 +1,17 @@ | ||
| CSSpara animar tanto `width`como `height`: | ||
| ```css | ||
| /*clase original */ | ||
| #flyjet { | ||
| transition: all 3s; | ||
| } | ||
| /* JSañade .growing */ | ||
| #flyjet.growing { | ||
| width: 400px; | ||
| height: 240px; | ||
| } | ||
| ``` | ||
| Ten en cuenta que`transitionend`se dispara dos veces, una para cada propiedad. Entonces, si no realizamos una verificación adicional, el mensaje aparecería 2 veces. |
12 changes: 6 additions & 6 deletions7-animation/2-css-animations/1-animate-logo-css/task.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -2,13 +2,13 @@ importance: 5 | ||
| --- | ||
| #Animar un avión (CSS) | ||
| Muestra la animación como en la imagen a continuación (haz clic en el avión): | ||
| [iframe src="solution" height=300] | ||
| -La imagen crece al hacer clic de`40x24px`a `400x240px` (10veces más grande). | ||
| -La animación dura 3segundos. | ||
| -Al final muestra: "¡Listo!". | ||
| -Durante el proceso de animación, puede haber más clics en el avión. No deberían "romper" nada. | ||
tambaqui marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
6 changes: 3 additions & 3 deletions7-animation/2-css-animations/2-animate-logo-bezier-css/solution.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| Necesitamos elegir la curva de Bézier correcta para esa animación. Debe tener`y>1`en algún punto para que el avión "salte". | ||
| Por ejemplo, podemos tomar ambos puntos decontrolcon`y>1`,como: `cubic-bezier(0.25, 1.5, 0.75, 1.5)`. | ||
| La gráfica: | ||
|  |
8 changes: 4 additions & 4 deletions7-animation/2-css-animations/2-animate-logo-bezier-css/task.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions7-animation/2-css-animations/3-animate-circle/task.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Oops, something went wrong.
Uh oh!
There was an error while loading.Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.