背景图像适合选项?

时间:2017-02-28 11:14:57

标签: html css

我已经为我的应用程序应用了背景图像选项它的工作正常。但我想修复背景图像使用适合选项,如填充,适合,拉伸等...如何应用我的应用程序的选项取决于用户选择的选项

代码:

1 个答案:

答案 0 :(得分:0)

为fill,Stretch和fit创建CSS类。 使用addClass将它们添加到背景div,或使用toggleClass通过JS进行切换。

.fill {
    background: url('image.jpg');
    background-repeat: repeat;
}

.stretch{
    background: url('image.jpg');
    background-size: cover;
}