-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathobrazki.html
59 lines (56 loc) · 1.91 KB
/
obrazki.html
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<title>Efekty obrazu</title>
<link rel="stylesheet" href="styl.css">
</head>
<body>
<header>
<h2>Efekty na obrazach</h2>
</header>
<main>
<section>
<img src="pszczola.jpg" alt="pszczoła na fioletowym kwiatku">
<form>
<label>
<input type="radio" name="efekt" value="blur(6px)"> Blur
</label>
<br>
<label>
<input type="radio" name="efekt" value="sepia(100%)"> Sepia
</label>
<br>
<label>
<input type="radio" name="efekt" value="invert(100%)"> Negatyw
</label>
<br>
<button type="button" onclick="zastosujEfekt()">Zastosuj</button>
</form>
</section>
<section>
<img src="pomarancza.jpg" alt="drzewo pomarańczy">
<br>
<button type="button" onclick="kolor()">Kolorowy</button>
<button type="button" onclick="czarnoBialy()">Czarno-biały</button>
</section>
<section>
<img src="owoce.jpg" alt="Kosz pełen owoców">
<br>
<input id="przezroczystosc" type="range" min="0" max="100" value="100">
<button type="button" onclick="zastosujPrzezroczystosc()">Zastosuj</button>
</section>
<section>
<img src="zolw.jpg" alt="Żółw w wodzie">
<br>
<input id="jasnosc" type="range" min="0" max="250">
<button type="button" onclick="zastosujJasnosc()">Zastosuj</button>
</section>
</main>
<footer>
<p><a href="http://www.css.com/" target="_blank">Zobacz inne efekty obrazu</a></p>
<p>Stronę wykonał: Chriskyy</p>
</footer>
<script src="main.js"></script>
</body>
</html>