0
我試圖使用jquery設置多個圖像的data-src屬性的img src屬性,但代碼無效。 Img src不會改變。從data-src屬性設置img src
下面是查看我的代碼的鏈接。
jQuery(document).ready(function($){
$('.container figure.images').each(function(index, element){
var thisImage = $(this);
var canvas = thisImage.find("canvas").get(0);
var ctx = canvas.getContext("2d");
ctx.rect(298, 0, 984, 329);
ctx.rect(0, 329, 1280, 514);
ctx.clip();
img = new Image();
img.onload = function() {
ctx.drawImage(this, 0, 0, img.width, img.height);
var imgNew = canvas.toDataURL("image/png");
thisImage.find("img").attr('src', imgNew);
};
img.src = thisImage.find("img").attr('data-src');
});
});
.container figure img {
width: 100%;
height: auto;
display: block;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<section class="platform">
<div class="container">
<figure class="images">
<canvas width="1280" height="843" style="display: none"></canvas>
<img src="#" data-src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" alt="description" />
</figure>
<figure class="images">
<canvas width="1280" height="843" style="display: none"></canvas>
<img src="#" data-src="https://www.dropbox.com/s/bl5yz4itgbo1ggl/2.jpg" alt="description" />
</figure>
<figure class="images">
<canvas width="1280" height="843" style="display: none"></canvas>
<img src="#" data-src="https://www.dropbox.com/s/bl5yz4itgbo1ggl/2.jpg" alt="description" />
</figure>
</div>
</section>
感謝所有,並有一個偉大的日子。
您的代碼就可以了,這是你的URL這是不對的,Dropbox的沒有返回的圖像,但一個網頁,如果你改變正常的圖像這些網址它會工作(我對收到的一些錯誤儘管加載代碼) – hardkoded
與問題無關,但您有兩個'var img'聲明。你從不使用第一個。 – Barmar