javascript convert px to vw

70

javascript convert px to vw -

//1px = 100vw / viewport's width (in px)

function convertPXToVW(px) {
	return px * (100 / document.documentElement.clientWidth);
}

Comments

Submit
0 Comments