2015-12-30 121 views
1

我是使用Jade.js的新手,但文檔並不十分有用。如果有人將我鏈接到一個詳細的文檔並向我展示如何在Jade.js中執行以下html代碼,我將非常感激。感謝所有提前的幫助!Jade中的音頻輸出

<audio controls autoplay> 
    <source src="screamer.wav" type="audio/mpeg"> 
</audio> 

回答

1

你可以試一下:http://jade-lang.com/demo/

它也可以將HTML轉換成玉:http://html2jade.org/

你的HTML可以通過這個片段

audio(controls='', autoplay='') 
    source(src='screamer.wav', type='audio/mpeg') 
+0

非常感謝你生產! – beekeeper

+0

請標記爲已接受 –