centreren website en random IMG script

Overzicht Reageren

Sponsored by: Vacatures door Monsterboard

17/09/2004 16:14:00
Quote Anchor link
Hallo allemaal,

Ik heb een pagina gemaakt die gecentreerd word weergegeven in verschillende resoluties.

Maar nu heb ik een random image script die ik wil gebruiken.

Maar het probleem is dat wanneer ik dit script in mijn pagina verwerk de pagina dan niet meer gecentreerd is.

Ik weet niet wat er nu precies fout gaat. Wilt er iemand misschien even naar mijn script kijken zoals ik deze nu gebruik??( waarbij er dus iets er niet meer gecentreerd wordmaar mijn random script wel werkt.)

Alvast bedankt

Groetjes ilonka

Code (php)
PHP script in nieuw venster Selecteer het PHP script
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<TITLE>The official website of ilonka</TITLE>
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv='Page-Enter' content='blendTrans(Duration=2.0)' />
<meta http-equiv='Page-Exit' content='blendTrans(Duration=2.0)' />
<meta name="description" content="the official website of ilonka">
<script type="text/javascript">
var pic;
pic=new Array;
pic[0]="plaatjes/index/1.jpg";

pic[1]="plaatjes/index/2.jpg";
pic[2]="plaatjes/index/3.jpg";
var now=new Date();
var seed=now.getTime() % 0xffffffff;
function rand(n){
seed=(0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16 ) % n;
}
var num=rand(3);
document.write('<img src='+pic[num]+' width="935" height="420" border="0">');
</script>
</HEAD>
<BODY bgcolor="#00005E">
<div id="Layer1" style="position:absolute; left:497px; top:139px; width:380px; height:406px; z-index:1">
  <table border="0" cellspacing="0" cellpadding="1" width="350">
    <tr>
      <td<img src="plaatjes/ilonka1.jpg" width="935" height="420"></td>
    </tr>
    <tr>
      <td><font color="#00005E" face="Comic Sans MS, Arial" size="3" class="unnamed2"><a href="http://www.ilonka-model.com/bio.html" class="buttons">biography</a>
        <a href="http://www.ilonka-model.com/portfolio.html" class="buttons">portfolio</a><a href="http://www.ilonka-model.com/credits.html" class="buttons">
        credits </a> <a href="http://www.ilonka-model.com/contact.html" class="buttons">contact</a>
        <a href="http://www.ilonka-model.com/guestbook.html" class="unnamed2"><span class="buttons">guestbook
        links</span></a></font></td>
    </tr>
    <tr>
      <td height="20"></td>
    </tr>
    <tr>
      <td>
        <p class="pequenomargenes"><font face="Comic Sans MS, Arial" size="2">Welcome
          to my new website of Ilonka<br>
          This site is for you, I hope you get great pleasure from it.<br>
          Don't forget to sign my guestbook on your way out.</font></p>
        <p><font face="Comic Sans MS, Arial" size="2">with love,<br>
          Ilonka</font></p>
      </td>
    </tr>
  </table>
</div>
<TABLE width="100%" border="0" cellspacing="0" cellpadding="0" align="center" height="100%">
  <TR>
    <TD align="center">
      <TABLE border="0" cellspacing="0" cellpadding="0">
        <TR>
          <TD align="right" colspan="2">
            <p class="linkje"><img src="plaatjes/ilonkafoto1.jpg" width="935" height="420"></p>
          </TD>
        </TR>
        <TR>
          <TD align="right" width="375">
            <div align="left"><font color="#FFFFFF" size="2" face="Comic Sans MS, Arial">
              Text and website  2003/2004 Ilonka All rights reserve</font>
            </div>
          </TD>
          <TD align="right">
            <div align="right"><font color="#FFFFFF" face="Comic Sans MS, Arial" size="2"><a href="mailto:[email protected]" class="webmaster">WEBMASTER</a></font></div>
          </TD>
        </TR>
      </TABLE>
    </TD>
  </TR>
</TABLE>
</BODY>
</HTML>
Gewijzigd op 17/09/2004 16:18:00 door
 
PHP hulp

PHP hulp

23/11/2024 06:02:10
 
Mitch X

Mitch X

17/09/2004 16:18:00
Quote Anchor link
Geen PHP move -> Webdesign :)
 
Alfred -

Alfred -

17/09/2004 16:34:00
Quote Anchor link
Quote:
<script type="text/javascript">
var pic;
pic=new Array;
pic[0]="plaatjes/index/1.jpg";

pic[1]="plaatjes/index/2.jpg";
pic[2]="plaatjes/index/3.jpg";
var now=new Date();
var seed=now.getTime() % 0xffffffff;
function rand(n){
seed=(0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16 ) % n;
}
var num=rand(3);
document.write('<img src='+pic[num]+' width="935" height="420" border="0">');
</script>


Dit is het script dat een afbeelding kiest?

Doe het gewoon zo?
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
<?
echo "<img src='plaatjes/index/" . rand(1,3) . ".jpg' width='935' height='420' border='0'>";
?>


Dan kiest hij een getal tussen 1 && 3, en voegt deze afbeelding in... zou het moeten doen denk ik toch.

Edit:
Quote:
<meta name="description" content="the official website of ilonka">
<script type="text/javascript">
var pic;
pic=new Array;
pic[0]="plaatjes/index/1.jpg";

pic[1]="plaatjes/index/2.jpg";
pic[2]="plaatjes/index/3.jpg";
var now=new Date();
var seed=now.getTime() % 0xffffffff;
function rand(n){
seed=(0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16 ) % n;
}
var num=rand(3);
document.write('<img src='+pic[num]+' width="935" height="420" border="0">');
</script>
</HEAD>
<BODY bgcolor="#00005E">

Je gaat eens even een img tag in je head zetten? Mooi werk...
Gewijzigd op 17/09/2004 16:37:00 door Alfred -
 

17/09/2004 16:53:00
Quote Anchor link
Ik heb gedaan wat je zegt en heb het stukje script op de volgende plaats gezet:

Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">
<HTML>
<HEAD>
<TITLE>The official website of ilonka</TITLE>
<META http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">
<meta http-equiv=\'Page-Enter\' content=\'blendTrans(Duration=2.0)\' />
<meta http-equiv=\'Page-Exit\' content=\'blendTrans(Duration=2.0)\' />
<meta name=\"description\" content=\"the official website of ilonka\">
<?
echo \"<img src=\'plaatjes/index/\" . rand(1,3) . \".jpg\' width=\'935\' height=\'420\' border=\'0\'>\";
?>

</HEAD>
<BODY bgcolor=\"#00005E\">


Maar hij kiest niet automatisch een andere afbeelding. Hijkiest helemaal geen afbeelding.

heb ik hem soms op de verkeerde plaats gezet?
 
Mitch X

Mitch X

17/09/2004 17:19:00
Quote Anchor link
Heb je PHP ondersteuning?
En niet in de head zetten :)

Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
<?
echo "<img src='plaatjes/index/" . rand(1,3) . ".jpg' width='935' height='420' border='0'>";
?>

---> WTF Doe je met al die slashes? --->
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
<?
echo "<img src=\'plaatjes/index/\" . rand(1,3) . \".jpg\' width=\'935\' height=\'420\' border=\'0\'>\";
?>
 
Alfred -

Alfred -

17/09/2004 17:30:00
Quote Anchor link
Quote:
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
<?
echo "<img src='plaatjes/index/" . rand(1,3) . ".jpg' width='935' height='420' border='0'>";
?>

---> WTF Doe je met al die slashes? --->
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
<?
echo "<img src=\'plaatjes/index/\" . rand(1,3) . \".jpg\' width=\'935\' height=\'420\' border=\'0\'>";
?>


Wat is er mis met mijn code? 'k snap em niet zo :/
Gewijzigd op 17/09/2004 17:32:00 door Alfred -
 
Mitch X

Mitch X

17/09/2004 17:31:00
Quote Anchor link
Jouw code niej ...
Ik bedoelde dat de eerste code de goede was, en zoals je al ziet, die tweede totaal niej.

Er moet dan niet gezegt worden dat het geprobeerd is want dat is het dus niet .

Edit: Gelijk ff jouw quote gefixt :)
Gewijzigd op 17/09/2004 17:33:00 door Mitch X
 
Alfred -

Alfred -

17/09/2004 17:43:00
Quote Anchor link
@Mitch: oké :p Ik had het niet direct door :D

Quote:
<META http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">
<meta http-equiv=\'Page-Enter\' content=\'blendTrans(Duration=2.0)\' />
<meta http-equiv=\'Page-Exit\' content=\'blendTrans(Duration=2.0)\' />
<meta name=\"description\" content=\"the official website of ilonka\">


Waarom zou je in html eigenlijk ook alle " gaan skippen? Misschien handig om eerst html te gaan leren? Aleja, je zet een img tag in je head, dan ben je al behoorlijk fout bezig....
 
Mitch X

Mitch X

17/09/2004 17:44:00
Quote Anchor link
Rafael:
@Mitch: oké :p Ik had het niet direct door :D

Quote:
<META http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">
<meta http-equiv=\'Page-Enter\' content=\'blendTrans(Duration=2.0)\' />
<meta http-equiv=\'Page-Exit\' content=\'blendTrans(Duration=2.0)\' />
<meta name=\"description\" content=\"the official website of ilonka\">


Waarom zou je in html eigenlijk ook alle " gaan skippen? Misschien handig om eerst html te gaan leren? Aleja, je zet een img tag in je head, dan ben je al behoorlijk fout bezig....


True, true :)
Begin met HTML.
 



Overzicht Reageren

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.