-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Paint Clone</title> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.min.css" /> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
|
||
<body> | ||
<!-- Tool Bar --> | ||
<div class="top-bar"> | ||
<!-- Active Tool --> | ||
<div class="active-tool"> | ||
<span id="active-tool" title="Active Tool">Brush</span> | ||
</div> | ||
<!-- Brush --> | ||
<div class="brush tool"> | ||
<i class="fas fa-brush" id="brush" title="Brush"></i> | ||
<input class="jscolor" value="a51dab" id="brush-color"> | ||
<span class="size" id="brush-size" title="Brush Size">10</span> | ||
<input type="range" min="1" max="50" value="10" class="slider" id="brush-slider"> | ||
</div> | ||
<!-- Bucket --> | ||
<div class="bucket tool"> | ||
<i class="fas fa-fill-drip" title="Background Color"></i> | ||
<input class="jscolor" value="ffffff" id="bucket-color"> | ||
</div> | ||
<!-- Eraser --> | ||
<div class="tool"> | ||
<i class="fas fa-eraser" id="eraser" title="Eraser"></i> | ||
</div> | ||
<!-- Clear Canvas --> | ||
<div class="tool"> | ||
<i class="fas fa-undo-alt" id="clear-canvas" title="Clear"></i> | ||
</div> | ||
<!-- Save Local Storage --> | ||
<div class="tool"> | ||
<i class="fas fa-download" id="save-storage" title="Save Local Storage"></i> | ||
</div> | ||
<!-- Load Local Storage --> | ||
<div class="tool"> | ||
<i class="fas fa-upload" id="load-storage" title="Load Local Storage"></i> | ||
</div> | ||
<!-- Clear Local Storage --> | ||
<div class="tool"> | ||
<i class="fas fa-trash-alt" id="clear-storage" title="Clear Local Storage"></i> | ||
</div> | ||
<!-- Download Image --> | ||
<div class="tool"> | ||
<a id="download"> | ||
<i class="far fa-save" title="Save Image File"></i> | ||
</a> | ||
</div> | ||
</div> | ||
<!-- Mobile Message --> | ||
<div class="mobile-message"> | ||
<h2>Please application on large screen</h2> | ||
</div> | ||
|
||
<!-- Script --> | ||
<script src="jscolor.js"></script> | ||
<script src="script.js"></script> | ||
</body> | ||
|
||
</html> |