gpt4 book ai didi

html - 将按钮放入 Canvas 中

转载 作者:行者123 更新时间:2023-11-28 17:24:18 25 4
gpt4 key购买 nike

我在 html 中创建了一个按钮并在 CSS 中为其指定了样式,我想将该按钮放在我的 Canvas 上。

这是我的 Code

<!DOCTYPE html>

<html>
<head>
<title>Start Game</title>
</head>

<body>
<center>
<canvas id="canvas" width="1000" height="800" style="border:5px solid black"></canvas>
<a href="Game/index.html" class="myButton">START GAME</a>
<style>

.myButton {
-moz-box-shadow: 0px 10px 14px -7px #276873;
-webkit-box-shadow: 0px 10px 14px -7px #276873;
box-shadow: 0px 10px 14px -7px #276873;
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #599bb3), color-stop(1, #408c99));
background:-moz-linear-gradient(top, #599bb3 5%, #408c99 100%);
background:-webkit-linear-gradient(top, #599bb3 5%, #408c99 100%);
background:-o-linear-gradient(top, #599bb3 5%, #408c99 100%);
background:-ms-linear-gradient(top, #599bb3 5%, #408c99 100%);
background:linear-gradient(to bottom, #599bb3 5%, #408c99 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#599bb3', endColorstr='#408c99',GradientType=0);
background-color:#599bb3;
-moz-border-radius:8px;
-webkit-border-radius:8px;
border-radius:8px;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:arial;
font-size:20px;
font-weight:bold;
padding:13px 32px;
text-decoration:none;
text-shadow:0px 1px 0px #3d768a;
}
.myButton:hover {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #408c99), color-stop(1, #599bb3));
background:-moz-linear-gradient(top, #408c99 5%, #599bb3 100%);
background:-webkit-linear-gradient(top, #408c99 5%, #599bb3 100%);
background:-o-linear-gradient(top, #408c99 5%, #599bb3 100%);
background:-ms-linear-gradient(top, #408c99 5%, #599bb3 100%);
background:linear-gradient(to bottom, #408c99 5%, #599bb3 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#408c99', endColorstr='#599bb3',GradientType=0);
background-color:#408c99;
}
.myButton:active {
position:relative;
top:1px;
}

</style>
</center>

</body>
</html>

提前致谢!

最佳答案

你不能在 Canvas 中嵌套元素你只能用 CSS 绘制按钮...

//同样这样做的简单方法是将这些属性添加到 [.myButton] 类

position: absolute;
top: 45%;
left: calc(47%);

如果您使用 HTML5 并声明 !DOCTYPE,我可能还会补充一点你不应该使用 <center>标签,因为它已被弃用。

关于html - 将按钮放入 Canvas 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27517860/

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