擴大這樣的回答:我運行Swiffy與5.2.0和由於內部生成的代碼是不同,這並沒有在一開始工作我的情況,我牛逼看起來是這樣的:
<div id="my-container">
<!-- Begins Swiffy generated code -->
<div style="position: relative; height: 100%; overflow: hidden; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); background-color: rgb(102, 121, 14); cursor: default; background-position: initial initial; background-repeat: initial initial;">
<svg color-interpolation-filters="sRGB" style="fill-rule: evenodd; pointer-events: none; -webkit-user-select: none; width: 100%; height: 100%;">
<!-- svg contents here -->
</svg>
<!-- Ends Swiffy generated code -->
</div>
</div>
請注意,我的容器是我在舞臺的構造函數,而不是由Swiffy與產生分配容器。
只是檢查生成的代碼和調整CSS選擇必要,原來的想法仍然是相同的:
<style type="text/css">
#my-container div {
background-color: transparent !important;
}
</style>
它的作品完美! –