SpeechRecognition实现语音转文字控制的待办事项代码
代码语言:html
所属分类:其他
代码描述:SpeechRecognition实现语音转文字控制的待办事项代码,动动嘴巴就能新增待办事项。
代码标签: SpeechRecognition 语音 转 文字 控制 待办 事项 代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
html,
body {
height: 100%;
margin: 0;
padding: 0;
overflow: scroll;
}
.container {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
text-align: center;
}
.container > div {
width: 100%;
height: 100%;
padding-top: 1em;
background: radial-gradient(#ededed, #f0f0f0, #fcfcfc, white);
position: relative;
overflow: scroll;
border-top: 1px solid #e6e6e6;
}
.container div small {
font-family: "Roboto Condensed", sans-serif;
position: relative;
top: 50%;
color: #999999;
}
.container__tasks__task {
width: 80%;
background: white;
box-shadow: 0px 0px 8px 0.1px gray;
border-radius: 10px;
text-align: center;
margin: auto;
margin-bottom: 1.5em;
padding: 1em;
}
.container__tasks__task > details {
font-family: "Roboto Condensed", sans-serif;
background: none;
display: inline-block;
width: 80%;
}
.container__tasks__task > details .........完整代码请登录后点击上方下载按钮下载查看
















网友评论0