获取当前图像大小

时间:2013-09-04 18:52:29

标签: javascript jquery html css

当我使用css缩放图像时,如何获取当前图像尺寸? 我试图获得瞬时图像大小窗口是否重新调整大小,这会改变图像的大小。

我认为这是某种jQuery .height() .width()

JSFIDDLE

CSS

#full_image{
  margin:0;
  padding:0;
  list-style:none;
  white-space: nowrap;
  overflow:hidden;
  position:relative;
  display:inline-block;
}

#full_image ul li img{
  margin:0 auto;
  width:100%;
  max-width:100%
}

#full_image .full_close{
 background-color: red;
 top: 10px;     
 cursor: pointer;    
 height: 29px;
 opacity: 1;
 position: absolute;    
 width: 29px;
 z-index: 999;
 right: 10px;
}

#full_image .next_big{
 background-color: red;
  top: 50%;     
  cursor: pointer;    
  height: 29px;
  opacity: 1;
  position: absolute;    
  width: 29px;
  z-index: 999;
  right: 0px;
}

#full_image .prev_big{
   background-color: red;
   top: 50%;     
   cursor: pointer;    
   height: 29px;
   opacity: 1;
   position: absolute;    
   width: 29px;
   z-index: 999;
   left: 0px;
   color: #222;
    }

HTML

<div id="full_image"> 
  <ul><li><a href="#"> <img src="http://i.telegraph.co.uk/multimedia/archive/01636/saint-tropez-beach_1636818c.jpg" alt="" /></a></li> </ul>    
    <a href="#" class="full_close"></a>
    <a href="#" class="button next_big"></a>
    <a href="#" class="button prev_big"></a>           
 </div>

4 个答案:

答案 0 :(得分:2)

是的。这就是我要去的方式。像这样:

$(document).ready(function(){
    $(window).resize(function(){
        console.log($(this).height()); 
        console.log($(this).width()); 
    })

})

在下面更新了小提琴

http://jsfiddle.net/mEMNq/2

答案 1 :(得分:0)

试试这个: -

(function($) {
    alert($('img').height());
    alert($('img').width());
})(jQuery);

JSFIDDLE

您也可以尝试使用element.clientWidthelement.clientHeight

答案 2 :(得分:0)

这应该完成工作:

(function($) {
    alert($('img').height());
    alert($('img').width());
})(jQuery);

仅提醒图像的高度和宽度。你可以做必要的操作。

答案 3 :(得分:0)

您可以尝试使用非标准IE element.currentStyle属性或DOM Level 2标准getComputedStyle方法。

在这里 - http://jsfiddle.net/maximua/mEMNq/4/