2011-07-28 157 views
2

我寫了一些jquery/php來重新加載圖像在我的wordpress主題窗口調整大小。它加載隨機代碼,然後崩潰。任何想法都歡迎。 謝謝。在Wordpress中重新加載不同大小的圖像

PHP

function head_scripts() { 
    if (!is_admin()) { 
     wp_localize_script('init', 'theme_info', array('ajax' => admin_url('admin-ajax.php'))); 
    } 
} add_action('init', 'head_scripts'); 


function image_echo($size, $i_ID) { 
    $image_attr = wp_get_attachment_image_src(get_post_thumbnail_id($i_ID), $size); 

    ?><img itemprop="image" class="ajax-resize" attachment-id="<?php echo get_post_thumbnail_id ($i_ID) ?>" src="<?php echo $image_attr[0]; ?>" width="<?php echo $image_attr[1]; ?>" height="<?php echo $image_attr[2]; ?>" alt="<?php echo get_the_title($i_ID); ?>"/><?php 
} 


function resize_ajax_image() { 
    if(isset($_POST['image_size'])) { 
     $image_size = $_POST['image_size']; 
    } 

    if(isset($_POST['attachment_id'])) { 
     $attachment_id = $_POST['attachment_id']; 
    } 

    image_echo($image_size, $attachment_id); 
    die(); 

} add_action('wp_ajax_nopriv_resize_ajax_image', 'resize_ajax_image'); 
add_action('wp_ajax_resize_ajax_image', 'resize_ajax_image'); 

jQuery的

$(document).ready(function() { 

    function find_ajax_images(imageSize) { 
     $('.ajax-resize').each(function(){ 
      var attachmentID = parseInt($(this).attr('attachment-id')); 
      $.ajax(
       theme_info.ajax,{ 
        type: 'POST', 
        cache: false, 
        data: { 
         action: 'resize_ajax_image', 
         image_size: imageSize, 
         attachment_id: attachmentID 
        }, 
        success: function(resizeImage){ 
         $(this).html(resizeImage); 
        } 
       }); 
     }); 
    } 


    function fixImages() { 
     var winHeight = $(window).height(); 
     var winWidth = $(window).width(); 

     if (winWidth < 800) { 
      //$('body').css('background-color','red'); 
      find_ajax_images('mobile'); 

     } else if (winWidth < 1024) { 
      //$('body').css('background-color','yellow'); 
      find_ajax_images('small_1024'); 

     } else if (winWidth < 1280) { 
      //$('body').css('background-color','green'); 
      find_ajax_images('medium_1280'); 

     } else if (winWidth < 1440) { 
      //$('body').css('background-color','white'); 
      find_ajax_images('medium_1440'); 

     } else if (winWidth < 1680) { 
      //$('body').css('background-color','magenta'); 
      find_ajax_images('large_1680'); 

     } else { // > 1680 
      //$('body').css('background-color','brown'); 
      find_ajax_images('large_1920'); 

     } //nested if 
    } 

    $(window).bind('resize', function() { 
     fixImages(); 
    }); 

}); 
+1

嘗試從發佈編碼塊,說不要。怎麼樣它崩潰?客戶端,服務器端,瀏覽器崩潰?如果在PHP中,你可以打開錯誤報告,讓我們知道會發生什麼?如果在JavaScript中,它在哪一行崩潰? etc. – mrtsherman

+0

我建議你不要在這裏使用ajax,只需要改變調整大小的圖像src到像img.php?img.jpg&size = large1024; –

+0

和別人的人....我個人喜歡那種風格 –

回答

1

@eicto的解決方案是最佳的,但它並沒有真正與WordPress的工作與圖像(媒體庫)的方式整合。所以是的,最後我用jQuery做了一些Ajax。

首先,localize your ajax,則: - 修復它

// your image sizes 
if (function_exists('add_image_size')) { 
    add_image_size('mobile', 300, 485); 
    add_image_size('small_960', 500, 800); 
    add_image_size('medium_1024', 540, 870); 
    add_image_size('medium_1280', 670, 1100); 
    add_image_size('large_1440', 760, 1230); 
    add_image_size('large_1680', 880, 1420); 
} 

// use this to load images inside your loop (with the proper adjustment) 
function image_echo($size, $i_ID) { 
    $image_attr = wp_get_attachment_image_src(get_post_thumbnail_id ($i_ID), $size); 

    ?><img itemprop="image" id="image-atta-<?php echo get_post_thumbnail_id ($i_ID) ?>" class="ajax-resize" attachment-id="<?php echo get_post_thumbnail_id ($i_ID) ?>" src="<?php echo $image_attr[0]; ?>" width="<?php echo $image_attr[1]; ?>" height="<?php echo $image_attr[2]; ?>" alt="<?php echo get_the_title($i_ID); ?>" /><?php 
} 

// return the resized image 
function resize_ajax_image() { 

    if(isset($_POST['image_size']) && isset($_POST['attachment_id'])) { 
     $image_size = $_POST['image_size']; 
     $attachment_id = $_POST['attachment_id']; 

     $i_attr = wp_get_attachment_image_src($attachment_id, $image_size); 

     $response = json_encode(array(
      'url' => $i_attr[0], 
      'width' => $i_attr[1], 
      'height' => $i_attr[2], 
     )); 
     header("Content-Type: application/json"); 
     echo $response; 

     exit; 
    } 

} add_action('wp_ajax_nopriv_resize_ajax_image', 'resize_ajax_image'); 
add_action('wp_ajax_resize_ajax_image', 'resize_ajax_image'); 

JS

$(document).ready(function() { 

    function resize_images(size) { 
     imageSize = size; 
     images = $('img.ajax-resize'); //the image for all resizable images 

     images.each(function(){ 
      var this_image = $(this); 
      var attachmentID = this_image.attr('attachment-id'); 

      $(this).hide(); 

      $.ajax(
       theme_info.ajax,{ 
        type: 'POST', 
        cache: false, 
        data: { 
         action: 'resize_ajax_image', 
         image_size: imageSize, 
         attachment_id: attachmentID 
        }, 
        success: function(image){ 
         //console.log(this); 
         this_image.attr({ 
          src: image.url, //json object values returned by wordpress 
          height: image.height, 
          width: image.width 
         }).fadeIn(500); 

        }, 
        error: function(e){ 
         console.log(e); 
        } 
       }); 
     }); 
    } 

    var last_image; 
    var last_size; 

    function last_img_fn(keyword) { //do not double resize to the same size 
     if (last_image != keyword) { 
      last_image = keyword; 
      resize_images(keyword); 
      //console.log(keyword); 
     } 
    } 

    function if_stops_resizing() { //delay 1 second between user starts resizing and when ends. if it corresponds, then resize 
     last_size = $(window).height() * $(window).width(); 

     window.setTimeout(function() { 
      current_size = $(window).height() * $(window).width(); 

      if (current_size == last_size) { 
       fixImages(); 
      } else { 
       return false; 
      } 
     }, 1000); 
    } 

    function fixImages() { //this will depend on how many media queries you do in css or your specific needs 
     var winHeight = $(window).height(); 
     var winWidth = $(window).width(); 

     if (winWidth < 800) { 
      //$('body').css('background-color','red'); 
      last_img_fn('mobile'); 

     } 
      if (winWidth < 1024) { 
      //$('body').css('background-color','yellow'); 
      last_img_fn('small_960'); 

     } 
      if (winWidth < 1280) { 
      //$('body').css('background-color','green'); 
      last_img_fn('medium_1024'); 

     } 
      if (winWidth < 1440) { 
      //$('body').css('background-color','white'); 
      last_img_fn('medium_1280'); 

     } 
      if (winWidth < 1680) { 
      //$('body').css('background-color','magenta'); 
      last_img_fn('large_1440'); 

     } 
      else { // > 1680 
      //$('body').css('background-color','brown'); 
      last_img_fn('large_1680'); 

     } 
    } fixImages(); //fix images on load (not quite sure if the best) 


    $(window).bind('resize', function() { 
     var winHeight = $(window).height(); 
     var winWidth = $(window).width(); 

     last_size = winHeight * winWidth; 
     //console.log(last_size); 

     if_stops_resizing(); //this triggers the whole sequence 
    }); 

}); 
1

確定這裏,我們去:

img_get.php:

<?php 
if (is_file($_GET['img'].'_'.$_GET['size'].'.jpg')) { 
    $myImage = imagecreatefromjpeg($_GET['img'].'_'.$_GET['size'].'.jpg'); 
} else {$myImage = imagecreatefromjpeg($_GET['img'].'.jpg'); 
header("Content-type: image/jpeg"); 
imagejpeg($myImage); 
imagedestroy($myImage); 
?> 

HTML樣本:

<img class="fixableimg" isrc="common"> 

JS:

function img_size(Wwidth) { 
    if (Wwidth < 800) { 
     return("mobile"); 
    } 
    if (Wwidth < 1024) { 
     return ("small_1024"); 
    } 
    if (Wwidth < 1280) { 
     return ("small_1280"); 
    } 
    //..... 
    return ("large_1920"); 

} 

    $(window).bind('resize', function() { 
     $('.fixableimg').each(function() { 
      var obj = $(this); 
      var img = obj.attr('isrc'); 
      var Wwidth = $(window).height(); 
      obj.attr('src','img_get.php?img='+img+'&size='+img_size(Wwidth)); 
      }); 
    }); 

類似的東西

+0

更簡單,更清潔。謝謝你的幫助。 –

+0

儘管如此,WordPress還是不會滿意的。我會嘗試將其與媒體上傳器集成並查看它是否有效。 –

+0

爲什麼wordpress不高興?任何錯誤? –

相關問題