admin管理员组文章数量:1341742
How can I write an if condition that will run if an element is 60% of the window's width worth off the screen?
I've tried using style.left > '40%'
but that doesn't seem to work. Or be right.
How can I write an if condition that will run if an element is 60% of the window's width worth off the screen?
I've tried using style.left > '40%'
but that doesn't seem to work. Or be right.
- 1 I believe you'll need to calculate a percentage from pixel values. – ayyp Commented Jun 13, 2013 at 19:57
- Can you use CSS media queries for this? I don't think it will do exactly what you want - but it will let you tweak CSS based on resolution size / size of the browser window. – Adam Plocher Commented Jun 13, 2013 at 19:58
- I'm lost in percentages. How wide is that element? You mean: "if 60% of the element's width is outside the right window edge"?? Can you please clarify? As it currently states it's hard to get a picture of what you want. – Roko C. Buljan Commented Jun 13, 2013 at 20:08
2 Answers
Reset to default 11You can use javascript and jQuery to do this pretty easily.
To find the right edge of your object (stored in memory as f
here), use this code:
var rightEdge = f.width() + f.offset().left;
To find the screen width, you can use this code:
var screenWidth = $(window).width();
The amount of object that is "off screen" is calculated by subtracting screenWidth
from rightEdge
, therefore this boolean expression describes when the object is more than 60% off the screen:
rightEdge-screenWidth > f.width()*.6
Here's a working demo: http://jsfiddle/YeyFj/
This isn't directly answering your question, but I created this fiddle that might make it easier to play with the math that you need to do.
http://jsfiddle/5ucbX/
var w = $('#container').width();
var el = $('#el');
el.draggable({
stop: function () {
var ew = el.width();
//this is your "formula"
var l = el.offset().left + (ew * .6);
if (l > w) {
el.addClass('over')
}
else {
el.removeClass('over')
}
}
});
本文标签: javascriptCheck if element is off right edge of screenStack Overflow
版权声明:本文标题:javascript - Check if element is off right edge of screen - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743641119a2514729.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论