titledk/silverstripe-backgroundimages

根据用户上传的图片定义背景图片(进行中)

安装: 263

依赖: 0

建议者: 0

安全: 0

星星: 2

关注者: 1

分支: 1

开放问题: 0

类型:silverstripe-module

2.0 2016-09-07 16:02 UTC

This package is not auto-updated.

Last update: 2024-09-14 18:42:18 UTC


README

根据用户上传的图片定义背景图片。

使用说明

/**
 * @return string
 */
public function getBackgroundCSS()
{
    return BackgroundImageStyle::create(
        $this->PrimaryImage()
    )
        ->getCSS();
}
<div style="$BackgroundCSS">
</div>
Identity:
  colors:
    primary: '#111'
    primary-gradient-start: '#222'
    primary-gradient-end: '#333'