Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxguist committed Apr 25, 2024
1 parent 09d82f6 commit 37ada22
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,29 @@ <h1>Speaking Keyboard</h1>
}

</style>

<style>
.speaker {
padding: 15px 25px;
font-size: 24px;
text-align: center;
cursor: pointer;
outline: none;
color: #fff;
background-color: #04AA6D;
border: none;
border-radius: 15px;
box-shadow: 0 9px #999;
}

.speaker:hover {background-color: #3e8e41}

.speaker:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
</style>

<div class="samerow">

Expand All @@ -108,7 +131,7 @@ <h1>Speaking Keyboard</h1>
So, please use it for better performance.
" class="form-control " id="text" rows="12" cols="60" autofocus></textarea>

<img title="Listen" src="https://i.imgur.com/XYb2rMG.jpg" style="width: 84px;height: 84px;" onclick="responsiveVoice.speak($('#text').val(),$('#voiceselection').val(), parameters);">
<img class="speaker" title="Listen" src="https://i.imgur.com/XYb2rMG.jpg" style="width: 84px;height: 84px;" onclick="responsiveVoice.speak($('#text').val(),$('#voiceselection').val(), parameters);">

</div>

Expand Down

0 comments on commit 37ada22

Please sign in to comment.