❓ Help Web developers pasok tabang!

Status
Not open for further replies.

Jisso_Kim

Established
May ginawa po ako website for final namin. Kaso diko alam paano gawin yung zoom view sa cp. Ano po code para dito?pic1.webp
Yan po yng nagawa ko. Tapos ganitong zoom po gusto ko.
Screenshot_2020-11-26-22-21-46-01-picsay.webp
 
You do not have permission to view the full content of this post. Log in or register now.
[CODE lang="javascript"]
/* Get the element you want displayed in fullscreen mode (a video in this example): */
var elem = document.getElementById("myvideo");

/* When the openFullscreen() function is executed, open the video in fullscreen.
Note that we must include prefixes for different browsers, as they don't support the requestFullscreen method yet */
function openFullscreen() {
if (elem.requestFullscreen) {
elem.requestFullscreen();
} else if (elem.webkitRequestFullscreen) { /* Safari */
elem.webkitRequestFullscreen();
} else if (elem.msRequestFullscreen) { /* IE11 */
elem.msRequestFullscreen();
}
}
[/CODE]
 
You do not have permission to view the full content of this post. Log in or register now.
[CODE lang="javascript"]
/* Get the element you want displayed in fullscreen mode (a video in this example): */
var elem = document.getElementById("myvideo");

/* When the openFullscreen() function is executed, open the video in fullscreen.
Note that we must include prefixes for different browsers, as they don't support the requestFullscreen method yet */
function openFullscreen() {
if (elem.requestFullscreen) {
elem.requestFullscreen();
} else if (elem.webkitRequestFullscreen) { /* Safari */
elem.webkitRequestFullscreen();
} else if (elem.msRequestFullscreen) { /* IE11 */
elem.msRequestFullscreen();
}
}
[/CODE]
Salamat dito master tatry ko😍
 
Status
Not open for further replies.

About this Thread

  • 6
    Replies
  • 365
    Views
  • 4
    Participants
Last reply from:
Jisso_Kim

Trending Topics

Online now

Members online
382
Guests online
1,168
Total visitors
1,550

Forum statistics

Threads
2,292,336
Posts
29,076,106
Members
1,210,292
Latest member
lricaoliverA142
Back
Top