Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcodiniz/ABlazorPong
A classic pong game build with Blazor. Not a single line of JavaScript has been written, only WebAssembly in all it's glory.
https://github.com/marcodiniz/ABlazorPong
blazor blazor-webassembly csharp dotnet net webassembly
Last synced: 20 days ago
JSON representation
A classic pong game build with Blazor. Not a single line of JavaScript has been written, only WebAssembly in all it's glory.
- Host: GitHub
- URL: https://github.com/marcodiniz/ABlazorPong
- Owner: marcodiniz
- License: mit
- Created: 2021-03-13T00:49:47.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-03-21T02:21:21.000Z (over 3 years ago)
- Last Synced: 2024-07-21T19:50:00.296Z (4 months ago)
- Topics: blazor, blazor-webassembly, csharp, dotnet, net, webassembly
- Language: C#
- Homepage: https://marcodiniz.github.io/ABlazorPong/
- Size: 33.7 MB
- Stars: 17
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# A Blazor Pong
### Live Demo: https://marcodiniz.github.io/ABlazorPong/
![screenshot](screenshots/pong.gif)
A Blazor Pong was an personal experiment to remake the classical pong for browser without any
javascript.### The challenge:
- No JavaScript could be used. Neither JsInterop invokes. Zero JS, nada!
- Should have sounds effects. Sounds should be handled without JS.
- Should look like the original pong.
- Has to look nice an playable, despite not be using canvas and js libs.
- The code should be the simple and claen. Easy for anyone to understand and replicate.