〜在我的文章页面(http://www.adrtimes.squarespace.com/articles)上,每个条目都以一个在翻转时发生变化的图像开始。这很好。
但是,在我的主页(http://www.adrtimes.squarespace.com)上,我正在加载最近2篇未归类为视频的文章,以及2篇最近被标记为视频的文章。我正在使用jQuery load()从文章页面中提取内容。除了主页上的swapImage翻转之外,一切正常。我尝试将swapImage函数作为回调包括但只有一个组或另一个组将正确翻转,而不是两组内容。我不确定是什么问题!!
以下是代码:
<script type="text/javascript">
<!--
$(function(){
$.swapImage(".swapImage");
/* Homepage */
// load recent articles
$("#LoadRecentArticles").load("/articles/ .list-journal-entry-wrapper .journal-entry-wrapper:not(.category-video)", function(){
//callback...
$("#LoadRecentArticles .journal-entry-wrapper").wrapAll('<div class="list-journal-entry-wrapper" />');
$("#LoadRecentArticles .journal-entry-wrapper:gt(1)").remove();
// modify Read More tag
$('.journal-read-more-tag a:contains(Click to read more ...)').each(function(){
var str = $(this).html();
$(this).html(str.replace('Click to read more ...','Continue reading—'));
});
$.swapImage(".swapImage");
});
// load recent videos
$("#LoadRecentVideos").load("/articles/category/video .list-journal-entry-wrapper", function(){
//callback...
$("#LoadRecentVideos .journal-entry-wrapper:gt(1)").remove();
$('<div class="VideoTag">—video</div>').insertBefore("#LoadRecentVideos .category-video .body img");
// modify Read More tag
$('.journal-read-more-tag a:contains(Click to read more ...)').each(function(){
var str = $(this).html();
$(this).html(str.replace('Click to read more ...','Continue reading—'));
});
$.swapImage(".swapImage");
});
});
-->
</script>
以下是文章条目中图像的html示例:
<a href="/articles/2010/5/6/article-title-goes-here.html"><img class="swapImage {src: '/storage/post-images/Sample2_color.jpg'}" src="/storage/post-images/Sample2_bw.jpg" /></a>
答案 0 :(得分:1)
如果这不是你想要的,我很抱歉,但你自己交换真的很简单。
我不确切知道您的选择器应该是什么,但是当您src
时,它会获取图片的mouseenter
,并将其从_bw.jpg
更改为_color.jpg
},并在你mouseleave
时回来。
HTML:
<img class='imageToSwap' src="http://adrtimes.squarespace.com/storage/post-images/Sample2_bw.jpg">
jQuery的:
$('.imageToSwap').hover(function() {
var $th = $(this);
var src = $(this).attr('src');
var newSrc = src.replace(/_bw.jpg/, '_color.jpg');
$th.attr('src', newSrc)
},
function() {
var $th = $(this);
var src = $(this).attr('src');
var newSrc = src.replace(/_color.jpg/, '_bw.jpg');
$th.attr('src', newSrc)
});
修改强>
使用live()的版本
希望这会为你做到。 jQuery的live()
函数将管理页面加载后动态添加到DOM的元素的事件。
试一试,让我知道结果如何。
$('.imageToSwap').live('mouseover mouseout', function(event) {
var $th = $(this);
var src = $(this).attr('src');
if (event.type == 'mouseover') {
var newSrc = src.replace(/_bw.jpg/, '_color.jpg');
$th.attr('src', newSrc)
} else {
var newSrc = src.replace(/_color.jpg/, '_bw.jpg');
$th.attr('src', newSrc)
}
});
答案 1 :(得分:0)
如果您第二次运行$.swapimage()
,它会自动禁用。所以在回调中试试这个:
$.swapImage("#LoadRecentVideos .swapImage");