gpt4 book ai didi

ruby - 如何在 Ruby Slim 中格式化音频标签?

转载 作者:数据小太阳 更新时间:2023-10-29 07:52:47 26 4
gpt4 key购买 nike

这是 HTML 音频标签:

<audio controls autoplay loop muted>
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio tag.
</audio>

这个在Slim代码中是怎么写的,包括control,auto play和loop属性?

最佳答案

您可以使用 boolean attributes 获取空属性在修身。我猜你的 HTML 片段会翻译成这样:

audio controls=true autoplay=true loop=true muted=true
source src="horse.ogg" type="audio/ogg"
source src="horse.mp3" type="audio/mpeg"

| Your browser does not support the audio tag.

或更短

audio(controls autoplay loop muted)

关于ruby - 如何在 Ruby Slim 中格式化音频标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23311747/

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