当前位置 : 主页 > 网页制作 > css >

css – 如何在罗盘中输出../images ..用于精灵?

来源:互联网 收集:自由互联 发布时间:2021-06-13
怎么出来../images ..对于指南针sass精灵? 并且有谁知道在哪里可以找到指南针sass精灵的传感器文件?例如sprite-url功能,在官方网站上找不到. --css--sass --test.scss--images--sprite-images --icons -
怎么出来../images ..对于指南针sass精灵?
并且有谁知道在哪里可以找到指南针sass精灵的传感器文件?例如sprite-url功能,在官方网站上找不到.

--css
--sass
    --test.scss
--images
--sprite-images
    --icons
        --a.png
        --b.png

.test.scss codes:
-----------------------
$sprite: sprite-map("icons/*.png");
.hello{
    background-image : sprite-url($sprite);
}

outputs
------------------------
.hello{
    background-image : url('/images/icons-s2c837140f3.png');
}

<!-- but I want to output  -->
.hello{
    background-image : url('../images/icons-s2c837140f3.png');
}
编辑:http_path =’../’可能确实是你需要的.

另请参见generated_images_dir:http://compass-style.org/help/documentation/configuration-reference/

如果您尚未设置自定义project_path或project_dir,则应该可以将其设置为../images,但您可能还需要将relative_assets设置为true.

除了你在这里找到的内容:http://compass-style.org/reference/compass/helpers/sprites/或issues on GitHub之外,你还不需要知道关于sprite-url和其他助手的其他内容.

网友评论