Vad har vi nu? är en applikation som är designad för att hjälpa studenter att hålla koll på sin skolschema. Det tillåter användare att visa schemat för olika klasser och läser schemana från JSON-filer.
- Visa schemat för olika klasser.
- Läs scheman från JSON-filer.
- Responsiv design för olika skärmstorlekar.
För att använda Vad har vi nu?, följ dessa steg:
- Klona eller ladda ner filerna till din dator
- Öppna
index.html
-filen i din webbläsare. - Välj den klass du vill se schemat för från rullgardinsmenyn.
- Schemat för den valda klassen visas.
För att anpassa Vad har vi nu? efter dina egna behov, följ dessa steg:
-
Skapa en JSON-fil för varje klasschema du vill visa. Filen ska namnges
KLASSNAMN.json
, där KLASSNAMN är namnet på klassen. -
JSON-filen ska ha följande format:
[ { "name": "Engelska", "startDay": 1, "startTime": "09:20", "endTime": "10:20" }, { "name": "Biologi", "startDay": 1, "startTime": "10:30", "endTime": "11:10" }, { "name": "Historia", "startDay": 1, "startTime": "11:15", "endTime": "12:10" }, { "name": "Spanska", "startDay": 1, "startTime": "12:15", "endTime": "13:00" }, { "name": "Lunch", "startDay": 1, "startTime": "12:10", "endTime": "12:40" }, { "name": "Matematik", "startDay": 1, "startTime": "13:15", "endTime": "14:15" }
startday är en variabel där 1 står för måndag och 5 är fredag.
- Byt ut de befintliga JSON-filerna i rotmappen med dina anpassade JSON-filer.
- Gå till script.js och lägg till JSON-data till arrayen. Denna array håller reda på vilka alternativ som finns att välja mellan:
let events = [];
let eventDuration = 0;
const eventFiles = [
{
name: "Namnet på ditt schema",
url: "Filnamn för din JSON.json", // GLÖM INTE ATT SKRIVA , EFTER } OM DET FINNS YTTERLIGARE ALTERNATIV EFTER
},
{
name: "Ett annat schema",
url: "Ett annat schema.json",
},
{
name: "Ett tredje schema",
url: "Ett tredje schema.json",
},
];
- Öppna
index.html
-filen i din webbläsare och välj den klass du vill visa schemat för från rullgardinsmenyn. - Schemat för den valda klassen visas.
Ladda ner Vad har vi nu? för Android från här.
Vad har vi nu? skapades av JagGillarVatten.
Vad har vi nu? licensieras under MIT License.
Vad har vi nu? is an application designed to help students keep track of their school schedule. It allows users to view their schedule for different classes, and it reads the schedules from JSON files.
- View the schedule for different classes
- Read schedules from JSON files
- Responsive design for different screen sizes
To use Vad har vi nu?, follow these steps:
- Clone the repository to your local machine or download the files.
- Open the
index.html
file in your web browser. - Select the class you want to view the schedule for from the dropdown menu.
- The schedule for the selected class will be displayed.
To customize Vad har vi nu? for your own needs, follow these steps:
- Create a JSON file for each class schedule you want to display. The file should be named
CLASSNAME.json
, where CLASSNAME is the name of the class. - The JSON file should have the following format:
[
{
"name": "English",
"startDay": 1,
"startTime": "09:20",
"endTime": "10:20"
},
{
"name": "Biologi",
"startDay": 1,
"startTime": "10:30",
"endTime": "11:10"
},
{
"name": "History",
"startDay": 1,
"startTime": "11:15",
"endTime": "12:10"
},
{
"name": "Spanish",
"startDay": 1,
"startTime": "12:15",
"endTime": "13:00"
},
{
"name": "Lunch",
"startDay": 1,
"startTime": "12:10",
"endTime": "12:40"
},
{
"name": "Math",
"startDay": 1,
"startTime": "13:15",
"endTime": "14:15"
}
1 means monday and 5 is friday and so on.
- Replace the existing JSON files in the root folder with your custom JSON files.
- Go to the script.js and add the JSON to the array. This array keeps track of what options are selectable:
let events = [];
let eventDuration = 0;
const eventFiles = [
{
name: "The name for your schedule",
url: "Filename for your JSON.json", // DON'T FORGET THE , AFTER } if there are more options after it.
},
{
name: "Another one",
url: "Another one.json",
},
{
name: "Yet another one",
url: "Yet another one.json",
},
];
- Open the
index.html
file in your web browser and select the class you want to view the schedule for from the dropdown menu. - The schedule for the selected class will be displayed.
Download Vad har vi nu? for Android from here.
Vad har vi nu? was created by JagGillarVatten
Vad har vi nu? is licensed under the MIT License.