博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
文字播放
阅读量:6618 次
发布时间:2019-06-25

本文共 1079 字,大约阅读时间需要 3 分钟。

<template>
<div>
<ul>
<li v-for='(item,index) in list ' :key="index">{
{item.title}}
<span @click='bofang(index)'></span>
</li>
</ul>
<div id="wrapp">
</div>
</div>
</template>
<script>
export default {
mounted() {},
data() {
return {
ttsText: '1',
list: [{
title: '第一个'
}, {
title: '第二个'
}, {
title: '第三个'
}, {
title: '第四个'
}, ]
};
},
methods: {
bofang(index) {
this.ttsText = this.list[index].title;
var ttsDiv = document.getElementById('wrapp');
// 这样就可实现播放内容的替换了
var au1 = '<audio id="wrapp_aud" autoplay="autoplay">';
var sss =
'<source src="http://tts.baidu.com/text2audio?lan=zh&ie=UTF-8&spd=4&text=' +
this.ttsText +
'" type="audio/mpeg">';
var au2 = '</audio>';
ttsDiv.innerHTML = au1 + sss + au2;
var ttsAudio = document.getElementById('wrapp_aud');
ttsAudio.play();
}
}
};
</script>
<style lang="scss">
input {
border: 1px solid black;
}
span {
display: inline-block;
width: 20px;
height: 20px;
background: #1469B8;
}
li {
height: 40px;
display: flex;
align-items: center;
border: 1px solid red;
}
</style>

转载于:https://www.cnblogs.com/liuliang389897172/p/10401886.html

你可能感兴趣的文章
paper 96:计算机视觉-机器学习近年部分综述
查看>>
vuex状态管理详细使用方法
查看>>
不要等有了足够的钱才选择去创业!!!
查看>>
手把手教你画嘴巴,以后再也不怕画嘴巴了
查看>>
selenium - webdriver - 截图方法get_screenshot_as_file()
查看>>
io.lettuce.core.RedisCommandTimeoutException: Command timed out
查看>>
种子填充算法描述及C++代码实现
查看>>
Kali渗透测试——快速查找Metasploit的模块
查看>>
如何生成项目的chm文档
查看>>
java封装httpClient工具(支持http和https,包含get和post请求)
查看>>
Rocket - diplomacy - LazyModuleImpLike
查看>>
Exchange Server 2016管理系列课件25.管理安全通讯组
查看>>
计算机科学,大一学生怎样来爱你(文&PPT)
查看>>
linux中vmstat命令详解
查看>>
PHP 开发社区微信服务号实战图解
查看>>
Exchange Server 2013 系列八:邮箱服务器角色DAG实战
查看>>
php使用curl下载指定大小的文件
查看>>
VS2013创建Node.js C++ Addons的过程
查看>>
amaze ui中的icon button
查看>>
tcp 三次握手
查看>>