通过chrome浏览器内置speechSynthesis实现文字语音合成播报示例代码
代码语言:html
所属分类:多媒体
代码描述:通过chrome浏览器内置speechSynthesis实现文字语音合成播报示例代码,支持粤语、普通话、男女生、日语、英文等很多语言播报。
代码标签: chrome 浏览器 内置 speechSynthesis 文字 语音 合成 播报 示例 代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
*, *:before, *:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
html {
font-family: Helvetica, Arial, sans-serif;
font-size: 100%;
background: #333;
}
#page-wrapper {
width: 640px;
background: #FFFFFF;
padding: 1em;
margin: 1em auto;
border-top: 5px solid #69c773;
box-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
h1 {
margin-top: 0;
}
#msg {
font-size: 0.9em;
line-height: 1.4em;
}
#msg.not-supported strong {
color: #CC0000;
}
input[type="text"] {
width: 100%;
padding: 0.5em;
font-size: 1.2em;
border-radius: 3px;
border: 1px solid #D9D9D9;
box-shadow: 0 2px 3px rgba(0,0,0,0.1) inset;
}
input[type="range"] {
width: 300px;
}
label {
display: inline-block;
float: left;
width: 150px;
}
.option {
margin: 1em 0;
}
button {
display: inline-block;
border-radius: 3px;
border: none;
font-size: 0.9rem;
padding: 0.5rem 0.8em;
background: #69c773;
border-bottom: 1px solid #498b50;
color: white;
-webkit-font-smoothing: antialiased;
font-weight: bold;
margin: 0;
width: 100%;
text-align: center;
}
button:hover, button:focus {
opacity: 0.75;
cursor: pointer;
}
button:active {
opacity: 1;
box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1) inset;
}
</style>
</head>
<body translate="no" >
<div id="page-wrapper">
<h1>Web Speech Synthesis Demo</h1>
<p id="msg"></p>
<input type="text" value="您好" name="speech-msg" id="speech-msg" x-webkit-speech>
<div class="option">
<label for="voice"&.........完整代码请登录后点击上方下载按钮下载查看
网友评论0