1. 首页
  2. 考试认证
  3. 其它
  4. cover 用于调整元素大小的jQuery插件,就像`background size`

cover 用于调整元素大小的jQuery插件,就像`background size`

上传者: 2024-10-18 01:58:31上传 ZIP文件 3.15MB 热度 3次

不再推荐使用,考虑填充工具的用法。

示例代码


var $element = $('.something');

$element.cover();

// 在窗口大小变化时更新

$(window).resize(function() {

    $element.cover('set');

});

Cover还需要在样式表中添加以下样式:


.something-container {

    position: relative;

    overflow: hidden;

}

.something {

    min-width: 100%;

    min-height: 100%;

    /* 居中显示,如 `background-position: center` */

    position: absolute;

}

下载地址
用户评论