我使用此代码
function moveContent(px) {
var top = $('.scroll').position().top;
$('.scroll').css('top', top+px);
}
function keyHandler(event)
{
try
{
//some code here...
else if (code == stb.KEY_PPLUS)
moveContent(20);
else if (code == stb.KEY_PMINUS)
moveContent(-20);
//some code here...
我有一个观点,该块移出屏幕。 我想我需要这样的东西
if ($(".elementClass").css("margin-top")<'200px'){
//don't move content in this direction
}
答案 0 :(得分:0)
试试这个,
// get the margin in integer form
var margin=parseInt($(".elementClass").css("margin-top").replace('px',''));
if (margin < 200){
//don't move content in this direction
} else{
// whatever you want in else part...
}