Compare commits
16 Commits
other-idea
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
992c704be2 | ||
|
|
ef9bb85d65 | ||
|
|
539f55b6e9 | ||
|
|
aae0af7c19 | ||
|
|
e6b0db7227 | ||
|
|
7ef59a57ab | ||
|
|
373fe8b835 | ||
|
|
2a839de999 | ||
|
|
bbf4d88f61 | ||
|
|
ffc8f2a558 | ||
|
|
5223c9697f | ||
|
|
fdc96965f3 | ||
|
|
c24e6f1344 | ||
|
|
3aa5c6ad44 | ||
|
|
ce98b75c54 | ||
|
|
62eba51514 |
4
.gitignore
vendored
@ -1,2 +1,4 @@
|
||||
.DS_Store
|
||||
.old/
|
||||
.old/
|
||||
.cursor/
|
||||
tag-release.sh
|
||||
20
README.md
Normal file
@ -0,0 +1,20 @@
|
||||
# Cassette Player
|
||||
|
||||
Simple HTML/JS/CSS Cassette Player
|
||||
|
||||
## Instructions for hosting
|
||||
|
||||
1. Clone or download this repository.
|
||||
- if downloading as a zip file, extract to a temporary folder
|
||||
2. Copy or move the relevant files to the location you want to host them from. **Keep all files together in the same location/folder**.
|
||||
- `index.html` - main HTML file
|
||||
- `app.js` - main app JavaScript file
|
||||
- `styles.css` - app styling CSS file
|
||||
- `background.png` - image for player background
|
||||
3. Navigate to `http://<yourhost.com>/path/to/where/you/saved/index.html` in your browser.
|
||||
|
||||
### Alternatively, if just previewing
|
||||
|
||||
1. Unzip to a temporary folder.
|
||||
2. Open `index.html` in your browser. (`ctrl/cmd+o`, drag and drop, etc.)
|
||||
a. or navigate to the file manually in your address bar (e.g. `file:///Users/username/tempfolder/cassette-player/index.html`)
|
||||
BIN
assets/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 42 KiB |
|
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 1.9 MiB |
BIN
assets/background.webp
Normal file
|
After Width: | Height: | Size: 322 KiB |
BIN
assets/favicon-96x96.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
assets/favicon.ico
Normal file
|
After Width: | Height: | Size: 15 KiB |
3
assets/favicon.svg
Normal file
|
After Width: | Height: | Size: 206 KiB |
21
assets/site.webmanifest
Normal file
@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "ECHO REALITY",
|
||||
"short_name": "ECHO REALITY",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/assets/web-app-manifest-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png",
|
||||
"purpose": "maskable"
|
||||
},
|
||||
{
|
||||
"src": "/assets/web-app-manifest-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png",
|
||||
"purpose": "maskable"
|
||||
}
|
||||
],
|
||||
"theme_color": "#ffffff",
|
||||
"background_color": "#ffffff",
|
||||
"display": "standalone"
|
||||
}
|
||||
1991
assets/styles.css
Normal file
BIN
assets/web-app-manifest-192x192.png
Normal file
|
After Width: | Height: | Size: 46 KiB |
BIN
assets/web-app-manifest-512x512.png
Normal file
|
After Width: | Height: | Size: 215 KiB |