aggrosoft/oxid-percent-off

当设置UVP时显示折扣百分比。

安装: 6

依赖项: 0

建议者: 0

安全性: 0

星标: 0

关注者: 2

分支: 0

开放问题: 0

类型:oxideshop-module

1.0.1 2020-07-28 13:00 UTC

This package is auto-updated.

Last update: 2024-09-07 14:47:26 UTC


README

输入UVP价格时显示折扣百分比

安装

仅通过composer安装

composer require aggrosoft/oxid-percent-off

CSS

模块不附带额外的CSS文件,以下是一些可以开始使用的标记。将此添加到您的商店less或css文件中。

.percent-off-box {
  position: relative;
}
.percent-off-box .ribbon:before {
    width: 0;
    height: 0;
    border-top: 60px solid red;
    border-right: 60px solid transparent;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}
.percent-off-box .ribbon span {
  font-size: 18px;
  font-weight: bold;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  transform: rotate(-45deg) translateZ(0);
  -webkit-transform: rotate(-45deg) translateZ(0);
  width: 60px;
  display: block;
  position: absolute;
  top: 10px;
  left: -11px;
  pointer-events: none;
}