javascript-text-collapse
Gesponsorde koppelingen
PHP script bestanden
uitklap.js:
Code (php)
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
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
var snelheid = 35;
var eindhoogte;
var interval;
function slide(div)
{
var id = document.getElementById(div);
id.style.overflow = 'hidden';
if(id.style.display == "none")
{
clearInterval(interval);
id.style.display = 'block';
eindhoogte = (id.offsetHeight - 5);
id.style.height = '1px';
interval = setInterval('verhoog(\'' + div + '\');', 0001);
}
else
{
clearInterval(interval);
id.style.height = id.offsetHeight + 'px';
interval = setInterval('verlaag(\'' + div + '\');', 0001);
}
}
function verhoog(id)
{
id = document.getElementById(id);
var px = parseInt(id.style.height);
if(px < eindhoogte)
{
id.style.height = px + Math.ceil(eindhoogte / snelheid) + 'px';
}
else
{
id.style.height = '100%';
clearInterval(interval);
}
}
function verlaag(id)
{
id = document.getElementById(id);
var hoogte = (parseInt(id.style.height) - Math.ceil(eindhoogte / snelheid));
if(hoogte < 1)
{
id.style.display = 'none';
id.style.height = '100%';
clearInterval(interval);
}
else
{
id.style.height = hoogte + 'px';
}
}
var eindhoogte;
var interval;
function slide(div)
{
var id = document.getElementById(div);
id.style.overflow = 'hidden';
if(id.style.display == "none")
{
clearInterval(interval);
id.style.display = 'block';
eindhoogte = (id.offsetHeight - 5);
id.style.height = '1px';
interval = setInterval('verhoog(\'' + div + '\');', 0001);
}
else
{
clearInterval(interval);
id.style.height = id.offsetHeight + 'px';
interval = setInterval('verlaag(\'' + div + '\');', 0001);
}
}
function verhoog(id)
{
id = document.getElementById(id);
var px = parseInt(id.style.height);
if(px < eindhoogte)
{
id.style.height = px + Math.ceil(eindhoogte / snelheid) + 'px';
}
else
{
id.style.height = '100%';
clearInterval(interval);
}
}
function verlaag(id)
{
id = document.getElementById(id);
var hoogte = (parseInt(id.style.height) - Math.ceil(eindhoogte / snelheid));
if(hoogte < 1)
{
id.style.display = 'none';
id.style.height = '100%';
clearInterval(interval);
}
else
{
id.style.height = hoogte + 'px';
}
}
html:
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>JavaScript Slider</title>
<script type="text/javascript" src="uitklap.js"></script>
</head>
<body>
<div id="id" style="display:none; border: 1px solid red;">Dit is een test om te kijken of het werkt<br />Testing<br /><br />Still testing..<br /><br /><br /><br />Klaar.</div>
<br /><br />
<a href="#" onclick="slide('id'); return false">Klik</a>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>JavaScript Slider</title>
<script type="text/javascript" src="uitklap.js"></script>
</head>
<body>
<div id="id" style="display:none; border: 1px solid red;">Dit is een test om te kijken of het werkt<br />Testing<br /><br />Still testing..<br /><br /><br /><br />Klaar.</div>
<br /><br />
<a href="#" onclick="slide('id'); return false">Klik</a>
</body>
</html>