في مكون سمة، يعرض صورة (قبعة) على الشاشة
لاستخدام صورة في scss، تعمل مع اسم الأصل الخاص بها مباشرةً هكذا،
هذه الصور معرفة في about.json
{
"name": "christmas-decorations",
"about_url": "",
"license_url": "",
"author": "",
"assets": {
"red-hat1": "assets/decorations/red-hat1.png",
"red-hat2": "assets/decorations/red-hat2.png",
"squirrel2": "assets/decorations/squirrel2.png"
}
}
لاستخدام هذه الصور في scss، تعمل بشكل جيد إذا استخدمت اسم الأصل مباشرةً هكذا
background: transparent url($red-hat1) top left no-repeat;
أريد إضافة إعداد لاختيار صورة.
في settings.yml، لدي هذا، لاختيار صورة قبعة لعرضها على الشاشة
hat_type:
default: red-hat1
type: enum
choices:
- red-hat1
- red-hat2
- squirrel2
يمكنني استخدام if else في scss لاستخدام الصورة، ولكن كتلة if else هذه قد تكون طويلة جدًا …
@if $hat_type == "red-hat1" {
background: url($red-hat1) no-repeat center;
} @else if $hat_type == "red-hat2" {
background: url($red-hat2) no-repeat center;
} @else if $hat_type == "squirrel2" {
background: url($squirrel2) no-repeat center;
}
لقد حاولت استخدام دالة في scss
background: url(get_image($hat_type)) no-repeat center;
@function get_image($name){
@return "assets/decorations/" + $name + ".png"
}
ولكن هذا يحصل على عنوان URL مثل
https://www.domain.com/stylesheets/assets/decorations/squirrel2.png
هذا لا يعمل، يجب أن يتم حله هكذا بدلاً من ذلك …
https://www.domain.com/uploads/db9860/original/3X/9/1/91d36fdb030047c6390f9ca85604fdbfd2e3fc12.png
هل يمكن لأحد أن يعطي تلميحًا، شكرًا جزيلاً
…


