-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex8.html
44 lines (32 loc) · 1.04 KB
/
index8.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
<!DOCTYPE html>
<html>
<head>
<title>ind8</title>
</head>
<body>
<div id="mojDiv"></div>
<span id="mis-dogodek">Miskin dogodek</span>
<div id="drugiDiv" style="height:100px; width: 100px; background-color:#ff0069; display:none;"></div>
<script src="https://code.jquery.com/jquery-3.4.1.js"
integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU="
crossorigin="anonymous"></script>
<script type="text/javascript">
$(document).ready(function () {
izpisi();
$("#mis-dogodek").mouseover(function () {
$("#drugiDiv").slideDown();
})
$("#mis-dogodek").mouseleave(function () {
$("#drugiDiv").slideUp();
})
})
function izpisi() {
$("#mojDiv").text("Danes je lep dan");
}
</script>
<br />
<footer class="cen">
<a href="index7.html">Prejsnja stran</a> | <a href="index9.html">Naslednja stran</a>
</footer>
</body>
</html>