-1
A
回答
1
圖像是用於顯示圖形數據的元素,不能向其中插入動態值,您可以通過CSS將它們疊加在圖像上,並且需要一些JavaScript來動態更改它們。我強烈推薦jQuery。
http://www.w3schools.com/jquery/
您可以使用這兩個更有效地
測試代碼的這傢伙有一個基礎,一些不錯的視頻教程
https://www.youtube.com/watch?v=Mp0f0zTPLec&list=PL081AC329706B2953
0
嘗試是這樣的:
#image{width:100%;
height:200px;
position:relative;
overflow:hidden;
background:#454544;
z-index:1;}
#text{
color:white;
position:absolute;
top:10px;
z-index:2;
}
<div id="image">
<img src="http://wallpaperwarrior.com/wp-content/uploads/2016/09/Wallpaper-15.jpg">
<div id="text">
<h1>some text on the image</h1>
</div>
</div>
相關問題
- 1. 如何顯示由html創建的html動態url圖像
- 2. 如何在c中動態顯示圖像圖像#
- 3. 在javascript中的html表格中動態顯示圖像
- 4. 如何在html中顯示圖像?
- 5. 如何在html中顯示圖像?
- 6. 如何在html中顯示blob圖像?
- 7. 如何在動態html表中的requirefield validator中顯示動態。
- 8. 如何在Xamarin Form Header上顯示動態圖像?
- 9. 如何在文件上載動態顯示圖像
- 10. 在佈局中動態顯示圖像
- 11. 在Tableau中動態顯示圖像
- 12. 如何在動態位置動態顯示圖像
- 13. 如何在html中顯示同一行上的圖像
- 14. 如何顯示在圖像的中心動態文本的JPanel
- 15. 如何在asp.net gridview中顯示動態生成的圖像?
- 16. 如何動態顯示asp.net頁面上的字節圖像?
- 17. 動態顯示圖像
- 18. Android動態顯示圖像
- 19. 圖像未動態顯示
- 20. 動態圖像顯示
- 21. 如何動態交換圖像 - 顯示錯誤的圖像
- 22. 如何在HTML中的多個圖像上顯示多個圖像
- 23. 動態顯示D3中的圖像
- 24. 如何在HTML dynamycally顯示圖像(angularjs)
- 25. 如何在HTML顯示圖像
- 26. ImageJ-在圖像上顯示像素值
- 27. 如何在滑塊上顯示圖像Swift中的當前值?
- 28. HTML/Javascript在圖像上顯示數據
- 29. HTML /在HTML頁面中顯示圖像
- 30. 如何動態添加圖像以顯示在DataGridViewImageColumn中?
我只是嘗試了簡單的HTML方法,但它顯示在圖像的底部名字。 –