Skip to main content

Posts

Showing posts from January, 2023

How to embed(Link) youtube video by jquery?

Embed(Link) youtube video by jquery   <html> <head> <style> .cus-embed-youtube {   background-color: #000;   margin-bottom: 30px;   position: relative;   padding-top: 56.25%;   overflow: hidden;   cursor: pointer; } .cus-embed-youtube img {   width: 100%;   top: -16.84%;   left: 0;   opacity: 0.7; } .cus-embed-youtube .cus-embed-youtube-play {   width: 68px;   height: 48px;   background-color: #333;   box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);   z-index: 1;   opacity: 0.8;   border-radius: 6px; } .cus-embed-youtube .cus-embed-youtube-play:before {   content: "";   border-style: solid;   border-width: 15px 0 15px 26.0px;   border-color: transparent transparent transparent #fff; } .cus-embed-youtube img, .cus-embed-youtube .cus-embed-youtube-play {   cursor: pointer; } .cus-embed-youtube img, .cus-embed-youtube iframe, .cus-embed-youtube .cus-embed-youtube-play, .cus-embed-youtube .cus-embed-youtube-play:before {   position: absolute; } .cus-embed-youtube .cus-e