Calculator Tools Calculator Tools
Create

SOC 321 Board Game

Nov 12, 2023

About this app

A creative board game based on the concepts learned in SOC 321

SOC 321 Board Game SOC 321 Board Game Start Game Roll Dice Perform Action End Game

Related apps

Put this on your site

Source

                    <html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">

<title>SOC 321 Board Game</title>
<meta name="description" content="A creative board game based on the concepts learned in SOC 321">
<meta name="keywords" content="SOC 321, board game, statistics, creative project">

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">

<script type="text/javascript">
try {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.

// This will run when the DOM is ready.
document.addEventListener("DOMContentLoaded", function() {
// Function to start the game
function startGame() {
// Code to start the game
}

// Function to roll the dice
function rollDice() {
// Code to roll the dice and move the player
}

// Function to perform an action based on the player's position
function performAction() {
// Code to perform an action based on the player's position
}

// Function to end the game
function endGame() {
// Code to end the game and display the winner
}
});

} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>

<style>
/* App CSS Goes Here */
body {
font-family: 'Roboto', sans-serif;
background-color: #F8F8F8;
}

.container {
padding: 20px;
text-align: center;
}

h1 {
color: #333333;
font-size: 24px;
margin-bottom: 20px;
}

.board {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-bottom: 20px;
}

.tile {
width: 80px;
height: 80px;
background-color: #FFFFFF;
border-radius: 10px;
margin: 5px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.player {
width: 20px;
height: 20px;
background-color: #FFC107;
border-radius: 50%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

.actions {
display: flex;
justify-content: center;
margin-bottom: 20px;
}

.btn {
background-color: #007BFF;
color: #FFFFFF;
border-radius: 5px;
padding: 10px 20px;
margin: 0 10px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s;
}

.btn:hover {
background-color: #0056b3;
}

.winner {
color: #28A745;
font-size: 20px;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>SOC 321 Board Game</h1>
<div class="board">
<!-- Board tiles will be dynamically generated here -->
</div>
<div class="actions">
<button class="btn" onclick="startGame()">Start Game</button>
<button class="btn" onclick="rollDice()">Roll Dice</button>
<button class="btn" onclick="performAction()">Perform Action</button>
<button class="btn" onclick="endGame()">End Game</button>
</div>
<div class="winner">
<!-- Winner will be displayed here -->
</div>
</div>
</body>
</html>