0
此代碼在將自定義陰影調整爲圖像高度方面效果很好。但是,如果我將其應用於頁面上不同大小的圖像,則會將它們全部調整爲第一個圖像大小。我如何使它更具體?消隱語法。如何將css更改應用於jquery中的此對象
<li class="col third impact-home">
<div class="image-with-overlay">
<%= image_tag 'impact.jpg', :class => "image-with-shadow" %>
<div class="image-shadow"></div>
</div>
</li>
$(document).ready(function() { //Fires when DOM is loaded
getImageSizes();
$(window).resize(function() { //Fires when window is resized
getImageSizes();
});
});
function getImageSizes() {
var imgHeight = $(".image-with-shadow").height();
var imgMargin = (- imgHeight) * .995;
console.log(imgMargin);
$(".image-shadow").css({"height": imgHeight});
$(".image-shadow").css({"margin-top": imgMargin});
}
希望你知道你取得第1的對象的參數的大小從對象的數組中的'$( 「圖像配-與陰影」)'。爲了簡單起見,將它添加到一個循環中,這將按需要工作 – Sagar
您也可以製作一個jQuery插件,然後將其用於任何特定圖像。對於插件文檔檢查這個(https://learn.jquery.com/plugins/basic-plugin-creation) – Aman
這是沒有HTML沒有意義 – zer00ne