Sure, try the below modified .js and .css files. It adds a Fontawesome based close button to the upper right corner of the screen to dismiss the player. In the .js file, you can modify the fontawesome font used here:
Code:
+ '<i id="ytubeclose" class="fa fa-times-circle-o" aria-hidden="true"></i>'
and to modify the color/size of button, here in the .css file:
Code:
#ytubeclose{ /* close button inside video player */
font-size: 60px;
position: absolute;
right: 5px;
top: 5px;
color: white;
z-index: 1000;
cursor: pointer;
}
Bookmarks