Code is te lang kan hij korter.
De code:
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
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
<style>
#home
{
display: none;
}
#games
{
display: none;
}
#software
{
display: none;
}
</style>
<script type="text/javascript">
function home()
{
document.getElementById('home').style.display = 'block';
document.getElementById('games').style.display = 'none';
document.getElementById('software').style.display = 'none';
}
function games()
{
document.getElementById('home').style.display = 'none';
document.getElementById('games').style.display = 'block';
document.getElementById('software').style.display = 'none';
}
function software()
{
document.getElementById('home').style.display = 'none';
document.getElementById('games').style.display = 'none';
document.getElementById('software').style.display = 'block';
}
</script>
<a onmouseover="this.style.cursor='hand'" onclick="home();">Home</a>
<a onmouseover="this.style.cursor='hand'" onclick="games();">Games</a>
<a onmouseover="this.style.cursor='hand'" onclick="software();">Software</a>
<div id="tabs">
<div id="home">Tab 1
</div>
<div id="games">Tab 2
</div>
<div id="software">Tab 3
</div>
</div>
#home
{
display: none;
}
#games
{
display: none;
}
#software
{
display: none;
}
</style>
<script type="text/javascript">
function home()
{
document.getElementById('home').style.display = 'block';
document.getElementById('games').style.display = 'none';
document.getElementById('software').style.display = 'none';
}
function games()
{
document.getElementById('home').style.display = 'none';
document.getElementById('games').style.display = 'block';
document.getElementById('software').style.display = 'none';
}
function software()
{
document.getElementById('home').style.display = 'none';
document.getElementById('games').style.display = 'none';
document.getElementById('software').style.display = 'block';
}
</script>
<a onmouseover="this.style.cursor='hand'" onclick="home();">Home</a>
<a onmouseover="this.style.cursor='hand'" onclick="games();">Games</a>
<a onmouseover="this.style.cursor='hand'" onclick="software();">Software</a>
<div id="tabs">
<div id="home">Tab 1
</div>
<div id="games">Tab 2
</div>
<div id="software">Tab 3
</div>
</div>
Staat het verkeerd? Ik wist niet zeker of dit goed geplaatst is maar dit is het enige forum waarvan ik vind dat het bij past.
Je CSS met dezelfde inhoud kan je ook gewoon opsommen:
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
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
<style>
#home
{
display: none;
}
#games
{
display: none;
}
#software
{
display: none;
}
</style>
<script type="text/javascript">
var opened;
function toggle(open)
{
document.getElementById(open).style.display = 'block';
document.getElementById(opened).style.display = 'none';
opened = open;
}
</script>
<a onmouseover="this.style.cursor='hand'" onclick="toggle('home');">Home</a>
<a onmouseover="this.style.cursor='hand'" onclick="toggle('games');">Games</a>
<a onmouseover="this.style.cursor='hand'" onclick="toggle('software');">Software</a>
<div id="tabs">
<div id="home">Tab 1
</div>
<div id="games">Tab 2
</div>
<div id="software">Tab 3
</div>
</div>
#home
{
display: none;
}
#games
{
display: none;
}
#software
{
display: none;
}
</style>
<script type="text/javascript">
var opened;
function toggle(open)
{
document.getElementById(open).style.display = 'block';
document.getElementById(opened).style.display = 'none';
opened = open;
}
</script>
<a onmouseover="this.style.cursor='hand'" onclick="toggle('home');">Home</a>
<a onmouseover="this.style.cursor='hand'" onclick="toggle('games');">Games</a>
<a onmouseover="this.style.cursor='hand'" onclick="toggle('software');">Software</a>
<div id="tabs">
<div id="home">Tab 1
</div>
<div id="games">Tab 2
</div>
<div id="software">Tab 3
</div>
</div>
goed kijken wat ik gedaan heb ;)
Gewijzigd op 25/05/2010 21:42:29 door Aron K
-edit-
ik had je reactie niet gezien, voor de CSS gebruik zijn methode & qua JS mijne ;)
-edit2-
ik heet Jesse :P.
Gewijzigd op 25/05/2010 21:41:30 door Jesse Degger
Hij geeft het volgens mij niet goed door aan de variable.
( http://www.robinvandervliet.hostoi.com/newestthema.php )
Gewijzigd op 25/05/2010 21:54:36 door Robin van der Vliet
@Jesse, uw naam is aangepast in mijn vorige topic, mijn excuses.
Gewijzigd op 25/05/2010 21:46:06 door Aron K
var opened = "home";
je hebt er alleen nu "Home" staan, maak hier gewoon "home" van.