├── song.mp3 ├── crysong.mp3 ├── favicon.ico ├── glowball.gif ├── happy-cat.gif ├── offball.png ├── banana-cat.gif ├── favicon-16x16.png ├── favicon-32x32.png ├── apple-touch-icon.png ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── README.md ├── site.webmanifest ├── style.css ├── index.html └── index.js /song.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/Disco-Diwane-JS-Mobile-app/HEAD/song.mp3 -------------------------------------------------------------------------------- /crysong.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/Disco-Diwane-JS-Mobile-app/HEAD/crysong.mp3 -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/Disco-Diwane-JS-Mobile-app/HEAD/favicon.ico -------------------------------------------------------------------------------- /glowball.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/Disco-Diwane-JS-Mobile-app/HEAD/glowball.gif -------------------------------------------------------------------------------- /happy-cat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/Disco-Diwane-JS-Mobile-app/HEAD/happy-cat.gif -------------------------------------------------------------------------------- /offball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/Disco-Diwane-JS-Mobile-app/HEAD/offball.png -------------------------------------------------------------------------------- /banana-cat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/Disco-Diwane-JS-Mobile-app/HEAD/banana-cat.gif -------------------------------------------------------------------------------- /favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/Disco-Diwane-JS-Mobile-app/HEAD/favicon-16x16.png -------------------------------------------------------------------------------- /favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/Disco-Diwane-JS-Mobile-app/HEAD/favicon-32x32.png -------------------------------------------------------------------------------- /apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/Disco-Diwane-JS-Mobile-app/HEAD/apple-touch-icon.png -------------------------------------------------------------------------------- /android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/Disco-Diwane-JS-Mobile-app/HEAD/android-chrome-192x192.png -------------------------------------------------------------------------------- /android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harshbailurkar/Disco-Diwane-JS-Mobile-app/HEAD/android-chrome-512x512.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Disco-Diwane-JS-Mobile-app 2 | Simple Funny Disco app using JS 3 | #javascript #CSS #HTML 4 | 5 | Demo : https://harshbailurkar.github.io/Disco-Diwane-JS-Mobile-app/ 6 | -------------------------------------------------------------------------------- /site.webmanifest: -------------------------------------------------------------------------------- 1 | {"name":"Disco Diwane", 2 | "short_name":"Disco", 3 | "icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | box-sizing: border-box; 5 | } 6 | 7 | nav { 8 | text-align: center; 9 | background-color: rgb(43, 43, 43); 10 | padding: 0.4em; 11 | } 12 | 13 | ul { 14 | display: flex; 15 | justify-content: center; 16 | list-style: none; 17 | padding: 0.7em; 18 | } 19 | 20 | li { 21 | padding: 0.7em; 22 | margin: 0 10px; /* Adjust the gap between list items */ 23 | background-color: rgb(222, 218, 218); 24 | border-radius: 5px; 25 | } 26 | 27 | a { 28 | text-decoration: none; 29 | color: black; 30 | } 31 | body { 32 | background: #181616; 33 | } 34 | 35 | .button { 36 | display: flex; 37 | flex-direction: row; 38 | justify-content: center; /* Horizontally center the content */ 39 | align-items: center; 40 | } 41 | button { 42 | padding: 0.8em; 43 | background-color: rgb(255, 255, 255); 44 | border: none; 45 | border-radius: 5px; 46 | margin: 1em; 47 | } 48 | .img { 49 | display: flex; 50 | justify-content: center; /* Horizontally center the content */ 51 | align-items: center; 52 | } 53 | img { 54 | padding-top: 2rem; 55 | width: 40%; 56 | max-width: 250px; 57 | } 58 | h2 { 59 | color: whitesmoke; 60 | text-align: center; 61 | } 62 | h4 { 63 | color: whitesmoke; 64 | text-align: center; 65 | } 66 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |
29 |
36 |