Skip to content

Commit

Permalink
Some clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
Samantha Ming committed Sep 11, 2018
1 parent 5809999 commit b6b24de
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ A simple, not fancy at all, CSS animated Mario Jump app.

<br>

Play around with it on [CodePen](https://codepen.io/samanthaming/pen/)
Or see it live! [here](https://samanthaming.github.io/not-fancy-mario-jump/)
Play around with it on [CodePen](https://codepen.io/samanthaming/pen/qMxQBd)
Or see it live! [here](https://samanthaming.github.io/not-fancy-css-mario-jump/)

<br>

![App](images/not-fancy-mario-jump.png)
![App](images/not-fancy-css-mario-jump.png)

# Notes

Expand Down
Binary file added images/not-fancy-css-mario-jump.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<div class="outer-container">
<h1>Not Fancy Mario Jump</h1>
<div class="coin-counter">
<img src="images/coin.png" alt="">
<img src="images/coin.png" alt="mario coin">
<span>{{ count }}</span>
</div>
<div class="inner-container">
Expand All @@ -30,13 +30,13 @@ <h1>Not Fancy Mario Jump</h1>
:class="['block', {'bounce': isBounce}]"
@animationend="removeAnimation"
>
<img src="images/block.png">
<img src="images/block.png" alt="mario block">
</div>
<div
:class="['mario', {'jump': isJump}]"
@animationend="isJump = false"
>
<img src="images/mario.png" alt="">
<img src="images/mario.png" alt="mario">
</div>
<div class="control">
<button
Expand Down
1 change: 0 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ h1 {
* CONTROL
* ================== */
.control {
/* margin-top: 20px; */
width: 100%;
}
button {
Expand Down

0 comments on commit b6b24de

Please sign in to comment.