static * .html5ファイルを作成し、それをwildfly 8.1.0にデプロイしました。内部私はTTML字幕でタグを作成しました。 IE Edgeでページを開くと、字幕が表示されますが、私のCSS設定は表示されません。動作している設定のみが地域です。私のスタイルはどのように機能させることができますか? これは私の字幕トラックの例である:TTMLスタイルが見つかりません
<?xml version="1.0" encoding="UTF-8"?>
<tt
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.w3.org/ns/ttml"
xmlns:ttp="http://www.w3.org/ns/ttml#parameter"
xmlns:tts="http://www.w3.org/ns/ttml#styling" ttp:timeBase="media" xml:lang="eng"
ttp:cellResolution="50 30">
<head>
<styling>
<style xml:id="spanStyle" tts:color="#000000" tts:backgroundColor="#00FF00" tts:fontSize="160%" tts:fontFamily="default"/>
<style xml:id="paragraphStyle" tts:textAlign="center"/>
</styling>
<layout>
<region xml:id="bottom" tts:origin="10% 10%" tts:extent="80% 80%" tts:displayAlign="after" />
</layout>
</head>
<body>
<div>
<p begin="00:00:00.000" xml:id="p0" end="00:00:03.000" style="paragraphStyle" region="bottom">
<span style="spanStyle">
\t \t \t \t \t Example subtitle
\t \t \t \t </span>
</p>
</div>
</body>
</tt>
ありがとうございました!
特殊な要素のための修飾されたタグ名(名前空間を含む)は必要ありませんか? –
'tt'要素の' xmlns'宣言は名前空間をデフォルトとして適用するので、余分な名前空間の修飾は必要ありません。 –
tt要素は実際にはデフォルトで適用されていますが、追加しようとしましたが、結果は変わりません。 – Bojan