如何根据元素的位置设置精确的背景位置?

问题描述:

我想要实现的是:使用相同的图像,使用jQuery设置元素background-position,以便它们重叠最接近的父母background-image。我以某种方式计算出,$element.property().left需要乘以接近2(仍然不明白为什么如此),但我看不到任何数学模式。如何根据元素的位置设置精确的背景位置?

如果有人能告诉我一个方程中究竟到底是什么,这将是很大的帮助。我想象有一个元素的paddingmargin以及所涉及的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>

+0

为什么使用图像?你为什么不使用“透明”背景并使用“不透明”? –

+0

因为,例如,你不能使用具有透明背景和不透明度的'filter:blur(5px)'。 – wscourge

+0

你也可以尝试类似[this](http://jsfiddle.net/QvSng/192/)。 –

这里是关于offset代替position溶液碱(我简化的代码):

$.fn.filteredImg= function() { 
 
    
 
    var $this = $(this); 
 

 
    $this.each(function(index, card) { 
 
     var $card = $(card); 
 
     var $effect = $card.children(".filtered-effect"); 
 
     var $parent = $(card).parents(".parent").first(); 
 
     var img  = $parent.data("img"); 
 
     var cardPos = $card.offset(); 
 
     $parent.css({ 
 
      backgroundImage: "url(" + img + ")", 
 
      backgroundRepeat: "no-repeat" 
 
     }); 
 
     $effect.css({ 
 
      backgroundImage: "url(" + img + ")", 
 
      backgroundPosition: -cardPos.left + "px " + -cardPos.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 class="parent" data-img="http://www.planwallpaper.com/static/images/colorful-wallpaper2.jpg"> 
 
    <div class="container"> 
 
    <div class="row"> 
 
     <div class="col-md-12"> 
 
      <div class="card-filtered-img"> 
 
       <div class="filtered-effect"></div> 
 
       <div class="card-content"></div> 
 
      </div> 
 
     </div> 
 
    </div> 
 
    <div class="row"> 
 
     <div class="col-md-12"> 
 
      <div class="card-filtered-img"> 
 
       <div class="filtered-effect"></div> 
 
       <div class="card-content"></div> 
 
      </div> 
 
     </div> 
 
    </div> 
 
</div>

+0

我正在计算一些接近月球半径的东西。非常感谢。 – wscourge

由于/如果使用完整的视口,您可以使用视口单位来定位和s请将内部的的脚本放在一起。

当您调整大小时,这也会缩放,并且会提高性能,因为您不需要脚本来监视大小调整和重绘。

注意,这个演示中,我跑这不bootstrap,因为我不想增加赔偿其媒体查询的等

Updated fiddle

html, body { 
 
    margin: 0; 
 
    overflow-x: hidden; 
 
} 
 
.outer { 
 
    height: 1080px; 
 
    width: 100vw; 
 
} 
 
.card-acrylic { 
 
    top: 20px; 
 
    width: 80vw; 
 
    margin-left: 10vw; 
 
    min-height: 500px; 
 
    position: relative; 
 
    background-position: left -10vw top -20px; 
 
} 
 
.card-acrylic + .card-acrylic { 
 
    top: 40px; 
 
    background-position: left -10vw top -540px; 
 
} 
 

 
.card-acrylic > * { 
 
    position: absolute; 
 
    top: 0; 
 
    right: 0; 
 
    bottom: 0; 
 
    left: 0; 
 
} 
 

 
.card-acrylic .acrylic-effect { 
 
    z-index: 99; 
 
} 
 

 
.card-acrylic .card-content { 
 
    background: rgba(34, 34, 34, 0.35); 
 
    z-index: 100; 
 
}
<div class="outer" style="background-image: url(http://www.planwallpaper.com/static/images/colorful-wallpaper2.jpg)"> 
 

 
    <div class="card-acrylic" style="background-image: url(http://www.planwallpaper.com/static/images/colorful-wallpaper2.jpg)"> 
 
    <div class="acrylic-effect"></div> 
 
    <div class="card-content"></div> 
 
    </div> 
 

 
    <div class="card-acrylic" style="background-image: url(http://www.planwallpaper.com/static/images/colorful-wallpaper2.jpg)"> 
 
    <div class="acrylic-effect"></div> 
 
    <div class="card-content"></div> 
 
    </div> 
 
</div>