我正在尝试制作可用作幻灯片放映的 tgis j 查询脚本,我生成图片列表
现在它只是让 li 项目变大了。需要添加/调整什么
$(document).ready(function(){
$("div#dynamiclist_product table tr td img#thumb").click(function(){
$("div#dynamiclist_product table tr td img#main_pic").hide(); //hide prev pic that is loded automaticaly on product page
// enlarge when clicked
$(this).css("height","700");
$(this).css("width","500");
$(this).css("margin-top","170");//dont seem to work
$(this).css("margin-left","170");//dont seem to work
});});
//shrink back when other is clicked
$("img#thumb").click(function(){
$("img#thumb").css("height","160");
$("img#thumb").css("width","120");
$("img#thumb").css("margin-left","0");
$("img#thumb").css("margin-top","0");
});