in un componente tematico, che mostra un’immagine (cappello) sullo schermo
per utilizzare un’immagine in scss, funziona con il nome della sua risorsa direttamente in questo modo,
queste immagini sono definite in 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"
}
}
per utilizzare queste immagini in scss, funziona bene se si utilizza direttamente il nome della risorsa come questo
background: transparent url($red-hat1) top left no-repeat;
Voglio aggiungere un’impostazione per scegliere un’immagine.
in settings.yml, ho questo, per selezionare un’immagine di cappello da mostrare sullo schermo
hat_type:
default: red-hat1
type: enum
choices:
- red-hat1
- red-hat2
- squirrel2
Potrei usare if else in scss per usare l’immagine, ma questo blocco if else potrebbe essere troppo lungo …
@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;
}
Ho provato a usare una funzione in scss
background: url(get_image($hat_type)) no-repeat center;
@function get_image($name){
@return "assets/decorations/" + $name + ".png"
}
ma questo ottiene un url come
https://www.domain.com/stylesheets/assets/decorations/squirrel2.png
questo non funziona, dovrebbe essere risolto invece come questo…
https://www.domain.com/uploads/db9860/original/3X/9/1/91d36fdb030047c6390f9ca85604fdbfd2e3fc12.png
Qualcuno potrebbe dare un suggerimento, grazie mille
…


