前端頁面實現報警器提示音效果
阿新 • • 發佈:2017-10-27
項目 發出 defined style undefined page fun ima lang
圖片.png
原型圖:
圖片.png
項目需求:服務器接受到報警後將消息推送到前臺,(通過前端實時消息提示的效果-websocket長輪詢),前臺接受到消息後需要發出警報提示音,提醒用戶。
原理:很簡單,使用html5裏面的<audio>標簽即可實現,在鈴聲的官網上選擇一段報警的音頻,放在代碼裏面即可。
代碼片段:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> </head> <body> <audio autoplay="autoplay" id="auto" src=""></audio> <input type="button" value="點擊播放" onclick="playSound(‘http://data.huiyi8.com/2017/gha/03/17/1702.mp3‘)"> </body> <script src="https://code.jquery.com/jquery-3.0.0.min.js"></script> <script> $(function(){ function playSound(src) { var auto = $("#auto"); auto.attr("src",src); } }) </script> </html> </script> </html>
前端頁面實現報警器提示音效果