Advertisement
nrzmalik

Enhance Default Stoyline Player ToolTip

Dec 8th, 2023 (edited)
323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 0.54 KB | Source Code | 0 0
  1. function addCssToHead(cssRules) {
  2.     var styleElement = document.createElement('style');
  3.     styleElement.textContent = cssRules;
  4.     document.head.appendChild(styleElement);
  5. }
  6.  
  7. var css = `  #tooltip {
  8. border-radius: 25px !important; /* Adjust as needed */
  9. background-color: #585858 !important; /* Background color */
  10. color: #fff !important; /* Text color */
  11. font-size: 14px !important; /* Font size */    
  12. transition: opacity 1s ease, transform 1s ease, background-color 1s ease; /* Fade-in and bounce transition */} `;
  13.  
  14. addCssToHead(css);
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement