Created
July 27, 2012 14:58
-
-
Save josephwegner/3188502 to your computer and use it in GitHub Desktop.
Visual Scoring of Main Content via Javascript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Really all this does so far is give a score based on how much the element protrudes off the center. Center content is usually the focus | |
*/ | |
function getOffset( el ) { | |
var _x = 0; | |
var _y = 0; | |
while( el && !isNaN( el.offsetLeft ) && !isNaN( el.offsetTop ) ) { | |
_x += el.offsetLeft - el.scrollLeft; | |
_y += el.offsetTop - el.scrollTop; | |
el = el.offsetParent; | |
} | |
return { top: _y, left: _x }; | |
} | |
function score(doc) { | |
var left = getOffset(doc).left; | |
var right = doc.offsetWidth + left; | |
var mid = document.width / 2; | |
return ((mid - left) < (right - mid)) ? (mid - left) : (right - mid); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment