I'm not extremely great at coding, but I'd like to have players in my basketball program be able to copy and paste some code (on their phones) from a textarea. The catch is I also want the button to turn green and say the words "Copied! Now open the app to import."
I've found code that looks like it can accomplish this here, but I have no clue on how to actually implement it with what I've created below.
Any help would be great. Thanks for your time!
<style>
.wpic{
width:115px;
height:115px;
border:2px black solid;
}
.wdescription{
font-family:tahoma;
font-size:11px;
text-align:RIGHT;
}
.wtitle{
font-family:tahoma;
font-size:18px;
text-align:left;
letter-spacing:4px;
text-transform:uppercase;
font-weight:bold;
padding-bottom:5px;
}
button.wbutton {
background: #4162a8;
border-top: 1px solid #38538c;
border-right: 1px solid #1f2d4d;
border-bottom: 1px solid #151e33;
border-left: 1px solid #1f2d4d;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 10px 1px #5c8bee, 0 1px 0 #1d2c4d, 0 6px 0 #1f3053, 0 8px 4px 1px #111111;
box-shadow: inset 0 1px 10px 1px #5c8bee, 0 1px 0 #1d2c4d, 0 6px 0 #1f3053, 0 8px 4px 1px #111111;
color: #fff;
font: bold 14px/1 "helvetica neue", helvetica, arial, sans-serif;
margin-bottom: 15px;
padding: 10px 0 12px 0;
text-align: center;
text-shadow: 0 -1px 1px #1e2d4d;
width: 100%;
-webkit-background-clip: padding-box; }
button.wbutton:hover {
-webkit-box-shadow: inset 0 0 20px 1px #87adff, 0 1px 0 #1d2c4d, 0 6px 0 #1f3053, 0 8px 4px 1px #111111;
box-shadow: inset 0 0 20px 1px #87adff, 0 1px 0 #1d2c4d, 0 6px 0 #1f3053, 0 8px 4px 1px #111111;
cursor: pointer; }
button.wbutton:active {
-webkit-box-shadow: inset 0 1px 10px 1px #5c8bee, 0 1px 0 #1d2c4d, 0 2px 0 #1f3053, 0 4px 3px 0 #111111;
box-shadow: inset 0 1px 10px 1px #5c8bee, 0 1px 0 #1d2c4d, 0 2px 0 #1f3053, 0 4px 3px 0 #111111;
margin-top: 58px; }
.wtext{
width:315px;
height:65px;
border:2px black solid;
font-size:10px;
letter-spacing:1px;
text-align:justify;
padding:6px;
}
.wtable{
border:3px solid black;
padding:10px;
background-color:#DADBAD;
}
</style>
<table class="wtable">
<tr><td colspan="2" class="wtitle">Michael Jordan Workout</td></tr>
<tr><td><img src="https://img.cinemablend.com/filter:centercrop/cb/2/8/3/7/6/e/28376e7a167db6e4f726ef113df3c97a10bad7d008f79a5fa38514f3ba3a647b.jpg?w=100&h=100" class="wpic"></td><td style="padding-left: 10px;">
<button class="wbutton">CLICK HERE TO COPY CODE</button><br>
<textarea class="wtext">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</textarea>
</td></tr>
<tr><td colspan="2" class="wdescription">--- Combines speed, agility, and strength in a fun way. ----</td></tr>
</table>