gpt4 book ai didi

css - 将时间戳添加到已编译的 sass/scss

转载 作者:技术小花猫 更新时间:2023-10-29 10:36:20 24 4
gpt4 key购买 nike

是否可以使用 SASS 在编译后的 CSS 文件上自动添加时间戳?例如

/* CSS Compiled on: {date+time} */
...compiled css goes here...

我已经查看了 SASS 和 Compass 文档,但没有提及此类功能。

最佳答案

我不知道有任何内置的 SASS 或 Compass 功能可以做到这一点,但添加自定义 Ruby 函数来实现它并不难。 (请参阅 SASS 引用 Adding Custom Functions 中标题为“here ”的部分。)

带有 Ruby 函数的文件看起来像这样(我们称它为“timestamp.rb”):

module Sass::Script::Functions
def timestamp()
return Sass::Script::String.new(Time.now.to_s)
end
end

然后您将像这样在 SASS 文件中引用新的时间戳函数:

/*!
* CSS Compiled on: #{timestamp()}
*/

您只需要确保在编译 SASS 时加载“timestamp.rb”文件,方法是从 Compass 配置文件中请求它,或者使用 --require 参数SASS 命令行。当一切都说完了,你应该得到如下输出:

/*
* CSS Compiled on: 2012-10-23 08:53:03 -0400
*/

关于css - 将时间戳添加到已编译的 sass/scss,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13022461/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com