proDetails.php頁面中,class=“jqzoom”,jqzoom是在哪里
<a href="image_800/<?php echo? $proImgs[0]['albumPath'];?>" class="jqzoom" rel='gal1'? title="triumph" >
中的class="jqzoom",我在main.css中找不到,它到底是在哪里了
<a href="image_800/<?php echo? $proImgs[0]['albumPath'];?>" class="jqzoom" rel='gal1'? title="triumph" >
中的class="jqzoom",我在main.css中找不到,它到底是在哪里了
2017-03-25
舉報
2017-03-25
這個jqzoom是個類名,主要是用來初始化jqzoom 可以在該頁面下25行看到
$(document).ready(function() {
? $('.jqzoom').jqzoom({
? ? ? ? ? ?zoomType: 'standard',
? ? ? ? ? ?lens:true,
? ? ? ? ? ?preloadImages: false,
? ? ? ? ? ?alwaysOn:false,
? ? ? ? title:false,
? ? ? ? zoomWidth:410,
? ? ? ? zoomHeight:410
? ? ? ?});
?
});