Home  >  Article  >  Web Front-end  >  Click on the picture to get the original size of the picture_Image special effects

Click on the picture to get the original size of the picture_Image special effects

WBOY
WBOYOriginal
2016-05-16 18:43:20982browse

[Ctrl A select all Note: If you need to introduce external Js, you need to refresh to execute
]<script> var OriginImage=new Image(); function GetImageWidth(oImage) { if(OriginImage.src!=oImage.src)OriginImage.src=oImage.src; return OriginImage.width; } function GetImageHeight(oImage) { if(OriginImage.src!=oImage.src)OriginImage.src=oImage.src; return OriginImage.height; } </script>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn