|
|
|
ดูโค้ดให้หน่อยค่ะ คือว่าชี้รูปแล้วไม่ใหญ่ ไม่รู้ว่า echo ผิดหรือเปล่าค่ะ |
|
|
|
|
|
|
|
ดูโค้ดให้หน่อยค่ะ คือว่าชี้รูปแล้วไม่ใหญ่ ไม่รู้ว่า echo ผิดหรือเปล่าค่ะ
โค้ดนี้ใส่ไว้ที่ head
Code (PHP)
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script>
//<![CDATA[
$(function(){
$('.imgx').hover(function(){
var w = 300;
var h = 250;
var d = 600;//duration
var imgx = $(this);
$('.imgy').remove();
var imgy = $('<img class="imgy" src="'+$(this).attr('src')+'"/>').appendTo('body');
imgy.css({
position: 'absolute',
left: imgx.offset().left,
top: imgx.offset().top,
width: imgx.width(),
height: imgx.height()
}).mouseout(function(){
$('.imgy').remove();
}).click(function(){
$('.imgy').remove();
});
imgy.animate({
left: imgx.offset().left - (w/2),
top: imgx.offset().top - (h/2),
width: w+'px',
height: h+'px'
},d);
},function(){});
});
//]]>
</script>
</style>
โค้ดนี้ใส่ไว้ที่body
Code (PHP)
echo "<?php foreach(range(1,1) as $i):?>
<td><img width=100 height=100 src='$pic_activity' class='imgx'/></td>
<?php endforeach;?>";
Tag : PHP, MySQL, JavaScript, CakePHP
|
|
|
|
|
|
Date :
2012-02-04 12:14:42 |
By :
น้องอาโป |
View :
1054 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อันที่แสดงผล ก่อนการ Loop มันเป็นยังไงครับ
|
|
|
|
|
Date :
2012-02-04 15:30:46 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เช็คบรรทัด 26 ด้วยทำไมมี single quote อยู่หลัง _blank แค่อันเดียว
|
|
|
|
|
Date :
2012-02-04 19:22:04 |
By :
ozma |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|