您好我有一个 jQuery 仅在浏览器可见区域中打开图片:
$(document).ready(function() {
$('det_img_^').appear(function() {
var a = $(this).find('a');
$(this).html('<img src="' + a.attr('href') + '" title="' + a.text() + '" />');
});
});
HTML 代码应为:
<img class=" " id="det_img_54837261"
src="http://site.com/image54837261.jpg"
alt="" title="" border="0" height="190">
代码不起作用,需要修复 jQuery 部分才能使用此 HTML 代码。我尝试了一个原始示例http://code.google.com/p/jquery-appear/wiki/Examples它对我来说很好。JS文件全部包括在内。多谢你们!