我想要實現的是:使用相同的圖像,使用jQuery設置元素background-position
,以便它們重疊最接近的父母background-image
。我以某種方式計算出,$element.property().left
需要乘以接近2
(仍然不明白爲什麼如此),但我看不到任何數學模式。如何根據元素的位置設置精確的背景位置?
如果有人能告訴我一個方程中究竟到底是什麼,這將是很大的幫助。我想象有一個元素的padding
和margin
以及所涉及的DOM樹中的所有元素,但是在很多組合之後,我仍然無法到達那裏。
看起來效果最好的方法是設置background: transparent;
,但是不是;我需要它在元素背景圖像上進一步使用filter
CSS屬性。
添加了用於測試的HTML中的內聯樣式;另外,我創建了jsfiddle。
$.fn.filteredImg= function() {
var $this = $(this)
$this.each(function(index, card) {
var $card = $(card);
var img = $card.data("img");
var $parent = $card.parentsUntil("[data-img='" + img + "']").last().parent();
var $effect = $card.children(".filtered-effect");
var pos = $card.position();
$parent.css({
backgroundImage: "url(" + img + ")",
backgroundRepeat: "no-repeat"
});
$effect.css({
backgroundImage: "url(" + img + ")",
backgroundPosition: -2 * Math.ceil(pos.left) + "px " + -Math.round(pos.top) + "px"
});
})
}
$(".card-filtered-img").filteredImg();
.card-filtered-img {
width: 80%;
min-height: 500px;
margin-left: 77px;
margin-top: 17px;
position: relative;
}
.card-filtered-img > * {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.card-filtered-img .filtered-effect {
z-index: 99;
}
.card-filtered-img .card-content {
background: rgba(34, 34, 34, 0.35);
z-index: 100;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div data-img="http://www.planwallpaper.com/static/images/colorful-wallpaper2.jpg">
<div class="container" style="margin-top:30px">
<div class="row" style="padding:30px">
<div class="col">
<div class="card-filtered-img" data-img="http://www.planwallpaper.com/static/images/colorful-wallpaper2.jpg">
<div class="filtered-effect"></div>
<div class="card-content"></div>
</div>
<div class="card-filtered-img" data-img="http://www.planwallpaper.com/static/images/colorful-wallpaper2.jpg">
<div class="filtered-effect"></div>
<div class="card-content"></div>
</div>
</div>
</div>
</div>
爲什麼使用圖像?你爲什麼不使用「透明」背景並使用「不透明」? –
因爲,例如,你不能使用具有透明背景和不透明度的'filter:blur(5px)'。 – wscourge
你也可以嘗試類似[this](http://jsfiddle.net/QvSng/192/)。 –