【扭转图片3】

来源: 2017-03-25 07:07:12 [博客] [旧帖] [给我悄悄话] 本文已被阅读:

(function() { var orientation, img = new Image(); img.onload = function () { if (img.naturalWidth > img.naturalHeight) { orientation = 'landscape'; } else if (img.naturalWidth < img.naturalHeight) { orientation = 'portrait'; } else { orientation = 'even'; } document.body.innerHTML += '

' + orientation + '

'; } img.src = "https://s3-us-west-2.amazonaws.com/s.cdpn.io/130527/flower-300x259.jpg"; })();