0

我正在使用以下“Coverflow”javascript,ContentFlow

并具有过滤功能来搜索内容流中的图像标题并过滤它们。我需要 Contentflow 在搜索功能后重新加载过滤后的图像。我有以下代码可用于过滤和重新加载“流”,但它会重新加载所有图像,而不是过滤后的图像。显然,我没有正确的代码来执行此操作,我需要一些帮助来加载过滤后的图像。

$("#filter").keyup(function(){
global.canChangeImage = true;
    // Retrieve the input field text and reset the count to zero
    var filter = $(this).val(), count = 0; 
    // Loop through the comment list
    $("a.item").each(function(){
        // If the list item does not contain the text phrase fade it out
        if ($(this).text().search(new RegExp(filter, "i")) < 0) {
            $(this).fadeOut();
        // Show the list item if the phrase matches and increase the count by 1
        } else {
            $(this).show();
 var contentFlow = new ContentFlow('contentFlow');
       contentFlow._init();    
           count++;
        }
    });

    // Update the count
    var numberItems = count;
    $("#filter-count").text(count+" Images Found");

  });

任何帮助,将不胜感激!

4

1 回答 1

0

您可以使用数组来存储所有图像的信息,然后根据过滤条件和数组使用ContentFlow和函数addItem()rmItem()

使用这种方法,您可以从数组项中动态重新加载流。

于 2012-09-30T17:31:54.163 回答