如何获得基于百分比的div位置? [英] how can get div position Based on the percentage?

查看:279
本文介绍了如何获得基于百分比的div位置?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果使用此代码,您可以基于像素定位div.

whit this code you can get position a div based on pixel.

$('#div').position();

但是如何根据百分比给出div位置?

but how can give div position Based on the percentage?

推荐答案

使用窗口大小.

var position = $('#div').position();
var percentLeft = position.left/$(window).width() * 100;
var percentTop = position.top/$(window).height() *100;

此代码将为您提供顶部和左侧的位置百分比.

This code will give you the position percentage for the top and left sides.

这篇关于如何获得基于百分比的div位置?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆