gpt4 book ai didi

html - 在 Html 和 Css 中使用图像作为按钮

转载 作者:太空宇宙 更新时间:2023-11-03 23:00:34 24 4
gpt4 key购买 nike

我一直在使用游戏 Assets 集合来构建游戏。现在出现的主要问题是如何包含用户界面按钮。

目前,一个按钮是不同渐变和某种字体的集合。我曾尝试将图像渐变转换为背景属性,但未能成功,而且所使用的字体是由图像表示的字符集合。

解决此问题的最佳做法是什么?使用图像作为按钮?什么是正确的语义标记?

Example of a Button

按钮的语义

谢谢!对于这个问题的回答,但不是关于如何做的;但关于正确的语义标记。

目前我已经通过以下似乎合理的设置解决了它。

<label>
<img src="/aButton.png" alt="Send Message">
</label>

最佳答案

尝试如下

HTML

<input type="submit" id="search" name="submit" alt="search" value="">

CSS

input#search    {
background:url(../search-icon.png);
background-repeat: no-repeat;
width:40px;
height:40px;
border: 0;
}
input#search:hover {
background:url(../search-icon2.png);
background-repeat: no-repeat;
width:40px;
height:40px;
border: 0;
}

关于html - 在 Html 和 Css 中使用图像作为按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36712094/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com