文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

如何使用CSS+jQuery实现一个文字转语音机器人

2023-07-04 12:54

关注

这篇“如何使用CSS+jQuery实现一个文字转语音机器人”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“如何使用CSS+jQuery实现一个文字转语音机器人”文章吧。

素材

页面布局

机器人样式参考了下图,通过css拼造型的方式进行实现。部分还原了设计图

如何使用CSS+jQuery实现一个文字转语音机器人

 <div class="tianxian"></div> .tianxian{    width: 35px;    height: 35px;    border-radius: 50%;    background: #0e58cc;    position: absolute;    left: 0;    right: 0;    top: 0;    margin: auto;  }  .tianxian::after{    content: '';    display: block;    width: 5px;    height: 10px;    border-radius: 12px;    background: #fff;    position: absolute;    top: 10px;    left: 5px;    transform: rotateZ(20deg);  }

整体布局采用绝对定位布局利用整个头部,实现耳朵和眼睛的定位

<div class="head">      <div class="erduo"></div>      <div class="erduo"></div>      <div class="face">        <div class="eye"></div>        <div class="eye"></div>      </div>    </div>

 box-shadow: -5px -5px 30px 1px #0075af inset;

基于浏览器提供的SpeechSynthesisUtterance Api进行实现

SpeechSynthesisUtterance基本属性
SpeechSynthesisUtterance.text基本方法

为按钮添加点击事件,获取input输入框的值,并进行播放,添加眼睛动画,并在播放结束的回调移除眼睛动画

$('#btn').click(function () {      let text = $('#input').val()      if (text) {        $('.eye').addClass('shine')      }      let u = new window.SpeechSynthesisUtterance()      u.text = text      u.lang = 'zh'      u.rate = 0.7      u.onend = function () {        $('.eye').removeClass('shine')      }      speechSynthesis.speak(u)    })

动画类:

 .shine {    animation: shine 1s linear infinite;  }  @keyframes shine {    0%{      height: 100px;    }    100%{      height: 0px;    }  }

完整代码:

HTML+CSS

<style>  * {    margin: 0;    padding: 0;    list-style: none;    box-sizing: border-box;  }  html,  body {    width: 100%;    height: 100%;    overflow: hidden;    background: #000;  }  .robot{    width: 658px;    height:800px;    position: absolute;    left: 0;    right: 0;    margin: auto;    top: 0;    bottom: 0;  }  .tianxian{    width: 35px;    height: 35px;    border-radius: 50%;    background: #0e58cc;    position: absolute;    left: 0;    right: 0;    top: 0;    margin: auto;  }  .tianxian::after{    content: '';    display: block;    width: 5px;    height: 10px;    border-radius: 12px;    background: #fff;    position: absolute;    top: 10px;    left: 5px;    transform: rotateZ(20deg);  }  .gun{    width: 5px;    height: 30px;    background:#0075af ;    position: absolute;    left: 0;    right: 0;    top: 35px;    margin: auto;  }  .gai{    width: 60px;    height: 60px;    background: #fff;    box-shadow: -5px -5px 30px 1px #0075af inset;    position: absolute;    left: 0;    right: 0;    top: 65px;    margin: auto;    border-radius: 50%;  }  .head{    width: 370px;    height: 350px;    position: absolute;    left: 0;    right: 0;    top: 95px;    margin: auto;    border-radius: 70px;    background: #fff;    box-shadow: -5px -5px 30px 1px #0075af inset;  }  .erduo{    width: 60px;    height: 180px;    background: #0022b0;    position: absolute;    top: 0;    bottom: 0;    margin: auto 0;    border-radius: 60px;    border-top: 4px solid #0e9df9;    border-bottom: 4px solid #0e9df9;    box-shadow: -5px -5px 30px 1px #0075af inset;  }  .erduo:nth-child(1) {    border-left: 4px solid #0e9df9;    left: -40px;  }  .erduo:nth-child(2){    border-right: 4px solid #0e9df9;    right: -40px;    box-shadow: -5px -5px 30px 1px #0075af inset;  }  .face{    width: 288px;    height: 244px;    background: #03192f;    position: absolute;    left: 0;    right: 0;    top: 0;    bottom: 0;    margin: auto;    border-radius: 60px;    box-shadow: -5px -5px 30px 1px #0075af inset;  }  .eye{    width: 30px;    height: 100px;    background-image: url('https://p6-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/41c21816e3c740eaa43ade57de3eb5a5~tplv-k3u1fbpfcp-watermark.image');    background-size: contain;    position: absolute;    top: 0;    bottom: 0;    margin: auto;  }  .eye:nth-child(1){    left: 60px;  }  .eye:nth-child(2){    right: 60px;  }  .trans{    width:370px;    position: absolute;    display: flex;    justify-content: center;    align-items: center;    color: #fff;    left: 0;    right: 0;    margin: auto;    top:  600px;    font-size: 16px;  }  #input{    margin-right: 10px;    background: transparent;    border: none;    outline: none;    color: #fff;    border-bottom: 1px dashed #fff;    height: 40px;  }  #btn{    cursor: pointer;  }  .shine {    animation: shine 1s linear infinite;  }  @keyframes shine {    0%{      height: 100px;    }    100%{      height: 0px;    }  }</style><body>   <div class="robot">    <div class="tianxian"></div>    <div class="gun"></div>    <div class="gai"></div>    <div class="head">      <div class="erduo"></div>      <div class="erduo"></div>      <div class="face">        <div class="eye"></div>        <div class="eye"></div>      </div>    </div>  </div>  <div class="trans">    <input id="input" type="text">    <div id="btn">点击朗读</div>  </div></body>

js

 $(function () {    $('#btn').click(function () {      let text = $('#input').val()      if (text) {        $('.eye').addClass('shine')      }      let u = new window.SpeechSynthesisUtterance()      u.text = text      u.lang = 'zh'      u.rate = 0.7      u.onend = function () {        $('.eye').removeClass('shine')      }      speechSynthesis.speak(u)    })  })

以上就是关于“如何使用CSS+jQuery实现一个文字转语音机器人”这篇文章的内容,相信大家都有了一定的了解,希望小编分享的内容对大家有帮助,若想了解更多相关的知识内容,请关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯