Jump to content
php.lv forumi

albuma bilžu palielināšana


Snaip3Rs

Recommended Posts

Te tas ir bet kā var lai uzklikšķinot palielina uz isto izmēri piemēram auto vai kas tur jalie klai bilde butu īstajā izmērā!

Un vēlviens jautājums ka uztaisīt lai bildes stāv piemēram 4 rindās un izmērs atkal kautkāds tur 100x100 un uzklikšķinot palielinātos! šis otrais ir domāts image gallery bet es negribu tur uber pro grūtos vienkāršu skriptu tik!

 

<?php

$url = "/img/";

$monImage = "$url"."1.jpg";

$tueImage = "$url"."2.jpg";

$wedImage = "$url"."3.jpg";

$thurImage = "$url"."4.jpg";

$friImage = "$url"."5.jpg";

$weekendImage = "$url"."6.jpg";

$d = date("D");

 

switch ($d)

{

case Mon:

echo "<img src=$monImage width=160 height=170>\n";

break;

case Tue:

echo "<img src=$tueImage width=160 height=170>\n";

break;

case Wed:

echo "<img src=$wedImage width=160 height=170>\n";

break;

case Thu:

echo "<img src=$thurImage width=160 height=170>\n";

break;

case Fri:

echo "<img src=$friImage width=160 height=170>\n";

break;

default:

echo "<img src=$weekendImage width=160 height=170>\n";

}

?>

Edited by Snaip3Rs
Link to comment
Share on other sites

viss atkarīgs no tā, kā īsti tu vēlies bildi palielināt, piemēram, vari izmantot "lightbox", kas ir gatavs javaskripts, kas manuprāt pat ir ļoti labs! :)

Lai uztaisītu 4 rindā?

<table>
<tr>
<td><img src='1.jpg' /></td>
<td><img src='2.jpg' /></td>
<td><img src='3.jpg' /></td>
<td><img src='4.jpg' /></td>
</tr>
</table>

pēc šāda principa :)

Link to comment
Share on other sites

Nu lukur ir tas tavs kods

 

<table>

<tr>

<td><img src='1.jpg' /></td>

<td><img src='2.jpg' /></td>

<td><img src='3.jpg' /></td>

<td><img src='4.jpg' /></td>

</tr>

</table>

Bet kā man pielikt lai bildēm būtu 100x100 visam table lai nevis tur vienai atsevisķi un lai uzklikšķinot automātiski palielinās uz lielo izmēru!

Link to comment
Share on other sites

ir divi varianti - ģenerē tumbnailus(ātrāka ielāde)http://www.google.lv/#hl=lv&ei=tP21SrG2OpSg4QaC7tR8&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=generate+thumbnails+php&spell=1&fp=23def36c58836135 vai

<img src='image' width='100' height='100' />

Un tālāk izmanto "lightbox" vai kādu citu javascript.

Edited by daviskrex
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...