流量变现70%分成 全国楼凤小姐姐 招商联系客服 招商联系客服 招商联系客服 招商联系客服

JQuery判断IMG图片真实宽度和高度、判断IMG图片宽高比

[复制链接]
查看164 | 回复0 | 2024-10-1 12:01:50 | 显示全部楼层 |阅读模式

[color=rgba(58, 58, 58, 0.88)]

获取图片宽度高度

[color=rgba(58, 58, 58, 0.88)]什么时候需要获取图片真实的宽度和高度?

[color=rgba(58, 58, 58, 0.88)]在做pc网页的时候,有时候会考虑按照插入的图片的尺寸来判断图片是横图还是竖图。然后判断过后给予不同的展示方式!

[color=rgba(58, 58, 58, 0.88)]另外一种就是在手机页面上,在新闻页插入的图片往往都是按照图片的原尺寸来展示,如果手机屏幕太小,太大的图就会超出去!这时候有两种解决办法

[color=rgba(58, 58, 58, 0.88)]1,给所有的图片加上这样的样式

Markup

.news img{margin:5px auto;display:block;width:100%;height:auto;}

[color=rgba(58, 58, 58, 0.88)]但是这种方式有另外一个问题就是,如果插入的图片本身就很小的话,也会被直接拉伸成100%显示,显然这是不合理的!那幺这里就介绍另外一种方式就是通过js动态展示图片的尺寸!

[color=rgba(58, 58, 58, 0.88)]2,js动态获取图片的尺寸

[color=rgba(58, 58, 58, 0.88)]JQuery方式代码如下

JavaScript

var _w = parseInt($(window).width());// 获取浏览器的宽度$(".new_mess_c img").each(function(i) {        var img = $(this);        var realWidth;// 真实的宽度        var realHeight;// 真实的高度        // 这里做下说明,$("<img/>")这里是创建一个临时的img标签,类似js创建一个new Image()对象!        $("<img/>").attr("src", $(img).attr("src")).load(                        function() {                                /*                                 * 如果要获取图片的真实的宽度和高度有三点必须注意 1、需要创建一个image对象:如这里的$("<img/>")                                 * 2、指定图片的src路径 3、一定要在图片加载完成后执行如.load()函数里执行                                 */                                realWidth = this.width;                                realHeight = this.height;                                // 如果真实的宽度大于浏览器的宽度就按照100%显示                                if (realWidth >= _w) {                                        $(img).CSS("width", "100%").CSS("height", "auto");                                } else {// 如果小于浏览器的宽度按照原尺寸显示                                        $(img).css("width", realWidth + 'px').css("height",                                                        realHeight + 'px');                                }                        });});

[color=rgba(58, 58, 58, 0.88)]

[color=rgba(58, 58, 58, 0.88)]

[color=rgba(58, 58, 58, 0.88)]js方式代码如下

JavaScript

function getViewSize() {// 获取浏览器视口的宽高        return {                "w": window['innerWidth'] || document.documentElement.clientWidth,                "h": window['innerHeight'] || document.documentElement.clientHeight        };}function getFullSize() {// 获取浏览器最大的宽度        var w = Math.max(document.documentElement.clientWidth, document.body.clientWidth) +        Math.max(document.documentElement.scrollLeft, document.body.scrollLeft);        var h = Math.max(document.documentElement.clientHeight, document.body.clientHeight) +        Math.max(document.documentElement.scrollTop, document.body.scrollTop);        w = Math.max(document.documentElement.scrollWidth, w);        h = Math.max(document.documentElement.scrollHeight, h);        return {                "w": w,                "h": h        };}window.onload = function(){        var _sv_w = getViewSize()["w"];        var _sf_w = getFullSize()["w"];        var _w = _sv_w;// 这里用视口的宽度,具体视情况        var Imgarray = document.getElementsByTagName("img");        var realWidth;// 真实的宽度        var realHeight;// 真实的高度        for(var i =0;i<Imgarray.length;i++){                var imgtemp = new Image();// 创建一个image对象                imgtemp.src = Imgarray[i].src;                imgtemp.index = i;// 指定一个检索值,用于确定是哪张图                imgtemp.onload = function(){// 图片加载完成后执行                        var _stemp = this;// 将当前指针复制给新的变量,不然会导致变量共用                        realWidth = this.width;                        realHeight = this.height;                        if(realWidth >=_w ){                                Imgarray[_stemp.index].style.width = _w+'px';                                Imgarray[_stemp.index].style.height = 'auto';                        }else{                                Imgarray[_stemp.index].style.width = realWidth+'px';                                Imgarray[_stemp.index].style.height = realHeight+'px';                        }                };        }}

[color=rgba(58, 58, 58, 0.88)]

[color=rgba(58, 58, 58, 0.88)]JS和JQuery获取各种屏幕的宽度和高度

JavaScript

JavaScript:网页可见区域宽: document.body.clientWidth网页可见区域高: document.body.clientHeight网页可见区域宽: document.body.offsetWidth (包括边线的宽)网页可见区域高: document.body.offsetHeight (包括边线的高)网页正文全文宽: document.body.scrollWidth网页正文全文高: document.body.scrollHeight网页被卷去的高: document.body.scrollTop网页被卷去的左: document.body.scrollLeft网页正文部分上: window.screenTop网页正文部分左: window.screenLeft屏幕分辨率的高: window.screen.height屏幕分辨率的宽: window.screen.width屏幕可用工作区高度: window.screen.availHeight屏幕可用工作区宽度: window.screen.availWidthJQuery:$(document).ready(function(){alert($(window).height()); //浏览器当前窗口可视区域高度alert($(document).height()); //浏览器当前窗口文档的高度alert($(document.body).height());//浏览器当前窗口文档body的高度alert($(document.body).outerHeight(true));//浏览器当前窗口文档body的总高度 包括border padding marginalert($(window).width()); //浏览器当前窗口可视区域宽度alert($(document).width());//浏览器当前窗口文档对象宽度alert($(document.body).width());//浏览器当前窗口文档body的宽度alert($(document.body).outerWidth(true));//浏览器当前窗口文档body的总宽度 包括border padding margin})
获取图片宽高比

[color=rgba(58, 58, 58, 0.88)]js如何判断图片宽高比

[color=rgba(58, 58, 58, 0.88)]JavaScript中,你可以使用HTMLImageElement的naturalWidth和naturalHeight属性来获取图片的原始尺寸,然后通过比较宽度和高度的比例来判断图片的宽高比。

[color=rgba(58, 58, 58, 0.88)]以下是一个示例函数,用于判断图片的宽高比:

JavaScript

function checkImageAspectRatio(image) {    // 确保图片已加载完成    if (image.complete) {        const width = image.naturalWidth;        const height = image.naturalHeight;        const aspectRatio = width / height;         // 判断宽高比        if (aspectRatio > 1) {            console.log('宽高比大于1:宽度超过高度');        } else if (aspectRatio < 1) {            console.log('宽高比小于1:高度超过宽度');        } else {            console.log('宽高比为1:正方形或者长方形');        }    } else {        console.log('图片未加载完成');    }} // 使用方法:const img = document.getElementById('myImage'); // 假设你有一个id为'myImage'的图片元素checkImageAspectRatio(img);

[color=rgba(58, 58, 58, 0.88)]请确保在调用checkImageAspectRatio函数之前,图片已经加载完成,这通常意味着等待load事件或者在<img>标签上使用src属性。


[color=rgba(58, 58, 58, 0.88)]下面一段示例是判断图片宽度和高度,然后通过宽高度判断图片是横向的还是竖向的。

Markup

var theImage = new Image(); theImage.src = $(''#imgid").attr( "src"); theImage.onload = function(){        var wi=theImage.width;        var hi=theImage.height;        if (wi < hi) {console.log('图片的高度大于宽度,图片是竖向的') }}

注意:在遍历图片onload()执行就意味着完全加载,那么图片懒加载lazyload将失效!


回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则