Convert height of an document from pixel to vh

The height of document object is pixel, times percentage to convert into vh

// 10vh
document.documentElement.clientHeight * 0.1;

你可能感兴趣的:(Convert height of an document from pixel to vh)