This is the HTML audio tag:

<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>

How is this written in Slim code, including the control, auto play and loop attributes?

有帮助吗?

解决方案

You can get the empty attributes with boolean attributes in Slim. I guess your HTML snippet translates to something like this:

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.

or shorter

audio(controls autoplay loop muted)
  …

其他提示

If you are using Rails, you can also use the audio_tag helper: https://apidock.com/rails/ActionView/Helpers/AssetTagHelper/audio_tag

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top