0
A
回答
0
號由於這些圖像圖標,你不能改變它們的顏色。您可以嘗試使用這些http://www.entypo.com/。由於這些是字體,他們可以很容易地改變顏色。
1
您可以使用圖像色調,但我不知道它是否會爲您提供您所期望的效果:
基本上你換一個<figure>
元素的<img/>
周圍,將樣式應用到它:
/*HTML*/
<figure class="tint">
<img src="icon.png" width="400" height="260">
</figure>
/*CSS*/
.tint {
position: relative;
float: left;
cursor: pointer;
}
.tint:before {
content: "";
display: block;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: rgba(0,255,255, 0.5);
-moz-transition: background .3s linear;
-webkit-transition: background .3s linear;
-ms-transition: background .3s linear;
-o-transition: background .3s linear;
transition: background .3s linear;
}
.tint:hover:before {
background: none;
}
查看link瞭解演示和完整代碼示例。
在這個website你也可以查看一些不同的方法。
+0
。當然,這是隻有當你使用''標籤。否則,如果它是CSS的背景,我不知道如何改變它。 – NielsInc 2013-02-15 09:21:12
+0
謝謝,但是它的背景也是如此(我可以通過在父標籤中加上'style =「background-color:red」)來獲得。 – stackoverflowuser95 2013-02-15 12:18:45
相關問題
- 1. 使用imagemagick更改圖像的顏色
- 2. 更改圖像的顏色
- 3. 更改圖像的顏色
- 4. 使用HTML5/CSS/JS更改圖像的顏色?
- 5. 畫布 - 使用HTML5/CSS/JS更改圖像的顏色?
- 6. 使用CSS屬性動態更改圖像顏色
- 7. 如何單獨使用CSS單擊更改圖像顏色?
- 8. 如何使用懸停效果(CSS)更改圖像顏色?
- 9. 更改ImagePlus圖像顏色
- 10. 更改圖像顏色
- 11. Java更改圖像顏色
- 12. 僅使用CSS更改PNG的顏色
- 13. CSS改變圖像的顏色
- 14. 使用CSS更改<canvas>顏色?
- 15. 使用CSS更改按鈕顏色
- 16. 使用Javascript更改CSS背景顏色
- 17. 使用CSS顏色SVG圖像
- 18. css顏色和圖像顏色
- 19. 更改java中的圖像顏色
- 20. 更改位圖的像素顏色
- 21. 更改圖像部分的顏色
- 22. UIColor colorWithPatternImage更改圖像的顏色
- 23. 在php中更改圖像的顏色?
- 24. 更改matlab中圖像的顏色
- 25. 更改UITabBarItem圖像的顏色
- 26. 的UIView更改背景顏色圖像
- 27. 更改TTThumbsViewController的背景顏色/圖像
- 28. 更改png圖像的顏色
- 29. 更改圖像的顏色android
- 30. 更改圖像內的對象顏色
看看 http://stackoverflow.com/questions/3430343/how-can-the-colors-of-an-image-be-changed-using-css3 – Ingo 2013-02-15 08:33:27