-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathicons.html
More file actions
45 lines (35 loc) · 1.04 KB
/
icons.html
File metadata and controls
45 lines (35 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://use.fontawesome.com/83ba41554d.js"></script>
<style>
.winter-time {
font-size: 1000px;
color: aliceblue;
}
</style>
</head>
<body>
<button id="increase">+</button>
<button id="decrease">-</button>
<i id="snowflake" class="fa fa-snowflake-o winter-time" aria-hidden="true"></i>
<script>
var btnIncrease = document.getElementById("increase")
var btnDecrease = document.getElementById("decrease")
btnIncrease.addEventListener('click', makeBigger)
btnDecrease.addEventListener('click', makeSmaller)
function makeBigger() {
console.log('this one makes you bigger');
var snowflake = document.getElementById("snowflake")
snowflake.style.fontSize = "1500px";
}
function makeSmaller() {
console.log('this one makes you smaller');
var snowflake = document.getElementById("snowflake")
snowflake.style.fontSize = "500px";
}
</script>
</body>
</html>