-2
A
回答
0
請參閱:「SVG is supported in Firefox?」。
CSS的SVG底色轉型:
.test:before {
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='5' cy='5' r='5' /></svg>");
background-size: cover;
z-index: 1;
transition: opacity 2s;
}
.test:after {
background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='20' cy='20' r='10' /></svg>") no-repeat;
background-size: cover;
}
工作段:
.test
{
width: 400px;
height: 300px;
position: relative;
border: 1px solid green;
}
.test:before, .test:after {
content: "";
position: absolute;
top: 0px;
right: 0px;
bottom: 0px;
left: 0px;
opacity: 1;
}
.test:before {
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='5' cy='5' r='5' /></svg>");
background-size: cover;
z-index: 1;
transition: opacity 2s;
}
.test:after {
background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='20' cy='20' r='10' /></svg>") no-repeat;
background-size: cover;
}
.test:hover:before {
opacity: 0;
}
<div class="test">
</div>
1
相關問題
- 1. jQuery背景圖像轉換
- 2. CSS:背景濾鏡的解決方法?
- 3. IE8背景大小的解決方法
- 4. 多背景解決方案?
- 5. 背景圖像和轉換器
- 6. 使用jQuery背景圖像轉換
- 7. jQuery後備的背景圖像轉換
- 8. 如何動畫背景圖像轉換?
- 9. jquery動畫背景圖像轉換
- 10. 將圖像轉換爲背景內容
- 11. 轉換多個背景圖像
- 12. 時間背景圖像轉換器
- 13. CSS背景圖像轉換的後備
- 14. 背景圖像位置和CSS轉換
- 15. 背景圖像上的CSS3轉換
- 16. CSS3背景圖像位置轉換
- 17. 懸停轉換背景圖像
- 18. 移動iOS - 固定背景圖像解決方案
- 19. html背景圖像方向右轉
- 20. 背景色div轉換到背景圖像
- 21. 使用CSS3從背景顏色轉換爲背景圖像
- 22. 背景圖像臨時解決方案的圖像響應網頁設計?
- 23. 什麼是在Gmail中放置背景圖像的解決方法?
- 24. 背景圖像旋轉
- 25. 背景圖像旋轉器
- 26. 旋轉背景圖像
- 27. CSS背景圖像旋轉
- 28. CSS3背景圖片轉換
- 29. 背景圖像變換器
- 30. JavaScript切換背景圖像
99%* * omplete,** V ** erifiable ** E ** xample)](http://stackoverflow.com/help/mcve)。 請發佈與您的問題相關的JavaScript/jQuery,CSS和HTML。使用任何或所有以下服務創建演示: [jsFiddle.net](https://jsfiddle.net/), [CodePen.io](https://codepen.io/), [Plunker。 (http://plnkr.co/), [JS Bin](https://jsbin.com/) 或片段(位於文本編輯器工具欄或CTRL + M上的第7個圖標)。 – zer00ne
添加一些代碼@kannan –
[** This **](http://caniuse.com/#feat=svg-css)很重要 – Vikrant