Skip to content

Commit f3e30de

Browse files
authored
Merge pull request #1 from Castawhat/fossbooth-1.2
Fossbooth 1.2
2 parents 2c7cd6b + 1eb9c08 commit f3e30de

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,6 @@ Go to: https://castawhat.github.io/FOSSbooth
99
### No Internet, Offline
1010
Download the HTML, CSS and JS into a folder and click on index.html.
1111
*YOUR BROWSER WILL OPEN. THIS IS OK. ITS STILL RUNNING OFFLINE.*
12+
13+
## More about FOSSbooth
14+
I needed to make (or find) a simple piece of software for a photobooth (A surface tablet and a camera) for my sisters party. I couldnt really find one that suited me so I said "I'll do it myself" and I did! I decided to open source what was orginally Partybooth Web (Now FOSSbooth) to make it modifiable by anyone with a bit of HTML, CSS and JS.

index.html

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en" >
33
<head>
44
<meta charset="UTF-8">
5-
<title>FOSSbooth v1.1</title>
5+
<title>FOSSbooth v1.2</title> <!-- Change name here for tab name -->
66
<link rel="stylesheet" href="./style.css">
77

88
</head>
@@ -13,39 +13,38 @@
1313
<head>
1414
<meta charset="UTF-8">
1515
<meta name="viewport" content="width=device-width, initial-scale=1.0">
16-
<title>Photo Booth App</title>
16+
<title>FOSSbooth</title>
1717
<link rel="stylesheet" href="styles.css">
1818
</head>
1919
<body>
2020
<div id="welcomeScreen">
21-
<h1>Welcome to FOSSbooth</h1>
22-
<button onclick="showScreen('photoSelection')">Start</button>
21+
<h1>Welcome to FOSSbooth!</h1> <!--Change this to change the the greeting/name in the app-->
22+
<button onclick="showScreen('photoSelection')">Lets Go!</button> <!--Change this to change the text in the app-->
2323
</div>
2424

2525
<div id="photoSelection" style="display: none;">
26-
<h2>How many photos do you want on your strip?</h2>
26+
<h2>How many photos do you want on your strip?</h2> <!--Change this to change the text in the app-->
2727
<button onclick="startPhotoBooth(2)">2 Photos</button>
2828
<button onclick="startPhotoBooth(3)">3 Photos</button>
29-
<button onclick="startPhotoBooth(4)">4 Photos</button>
3029
</div>
3130

3231
<div id="photoCapture" style="display: none;">
33-
<h2 id="countdownText">Are you ready to take your photos?</h2>
32+
<h2 id="countdownText">Are you ready to take your photos?</h2> <!--Change this to change the text in the app-->
3433
<video id="camera" autoplay></video>
35-
<button onclick="startPhotoSequence()">Go</button>
34+
<button onclick="startPhotoSequence()">Go</button> <!--Change this to change the button label in the app-->
3635
</div>
3736

3837
<div id="outputOptions" style="display: none;">
39-
<h2>Lets customise and Print or Download Your Photo Strip!</h2>
38+
<h2>Lets customise and Print or Download Your Photo Strip!</h2> <!--Change this to change the title in the app-->
4039
<canvas id="photoCanvas"></canvas>
4140
<br>
4241
<label for="caption">Add Text:</label>
43-
<input type="text" id="caption" placeholder="Enter your amazing caption here">
42+
<input type="text" id="caption" placeholder="Enter your amazing caption here"> <!--Change this to change the placeholder in the app-->
4443
<br>
4544
<button onclick="applyText()">Apply Caption</button>
4645
<button onclick="downloadPhoto()">Download</button>
47-
<button onclick="printPhoto()">Print</button>
48-
<button onclick="returnToStart()">Return to Start</button>
46+
<button onclick="printPhoto()">Print (Using your browser's print dialog</button> <!-- Note: Actual printing functionality may vary by browser and OS, remove this line for not letting users print. -->
47+
<button onclick="returnToStart()">Start Over</button>
4948
</div>
5049

5150
<script src="script.js"></script>

0 commit comments

Comments
 (0)