Close & Stop Playing Video
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I'm working on a Wordpress project that someone else coded, and am stuck on how to make the video associated with code below stop when it is closed via the animation. I've searched throughout the project but have been unable to locate and clarity what .api in this context is referring to.
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('#view_video').click(function(){
jQuery('.video_need').animate({
height: 'show'
});
jQuery('.video_need iframe').api("play");
});
jQuery('#close_video').click(function(){
jQuery('.video_need').animate({
height: 'hide'
}, 1000);
});
});
javascript vimeo vimeo-api
add a comment |
I'm working on a Wordpress project that someone else coded, and am stuck on how to make the video associated with code below stop when it is closed via the animation. I've searched throughout the project but have been unable to locate and clarity what .api in this context is referring to.
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('#view_video').click(function(){
jQuery('.video_need').animate({
height: 'show'
});
jQuery('.video_need iframe').api("play");
});
jQuery('#close_video').click(function(){
jQuery('.video_need').animate({
height: 'hide'
}, 1000);
});
});
javascript vimeo vimeo-api
try this :jsfiddle.net/nkfH4
– i_th
Nov 17 '18 at 4:36
add a comment |
I'm working on a Wordpress project that someone else coded, and am stuck on how to make the video associated with code below stop when it is closed via the animation. I've searched throughout the project but have been unable to locate and clarity what .api in this context is referring to.
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('#view_video').click(function(){
jQuery('.video_need').animate({
height: 'show'
});
jQuery('.video_need iframe').api("play");
});
jQuery('#close_video').click(function(){
jQuery('.video_need').animate({
height: 'hide'
}, 1000);
});
});
javascript vimeo vimeo-api
I'm working on a Wordpress project that someone else coded, and am stuck on how to make the video associated with code below stop when it is closed via the animation. I've searched throughout the project but have been unable to locate and clarity what .api in this context is referring to.
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('#view_video').click(function(){
jQuery('.video_need').animate({
height: 'show'
});
jQuery('.video_need iframe').api("play");
});
jQuery('#close_video').click(function(){
jQuery('.video_need').animate({
height: 'hide'
}, 1000);
});
});
javascript vimeo vimeo-api
javascript vimeo vimeo-api
edited Nov 17 '18 at 4:23
Justin Bryeans
asked Nov 16 '18 at 23:14
Justin BryeansJustin Bryeans
11
11
try this :jsfiddle.net/nkfH4
– i_th
Nov 17 '18 at 4:36
add a comment |
try this :jsfiddle.net/nkfH4
– i_th
Nov 17 '18 at 4:36
try this :jsfiddle.net/nkfH4
– i_th
Nov 17 '18 at 4:36
try this :jsfiddle.net/nkfH4
– i_th
Nov 17 '18 at 4:36
add a comment |
1 Answer
1
active
oldest
votes
Untested, but something along these lines. Not sure what .api()
is.
jQuery(document).ready(function(){
jQuery('#view_video').click(function(){
jQuery('.video_need').animate({
height: 'show'
});
jQuery('.video_need iframe').api("play");
});
jQuery('#close_video').click(function(){
jQuery('.video_need').animate({
height: 'hide'
}, {
duration: 1000,
// animation completion callback
complete: function() {
jQuery('.video_need iframe').api("stop");
}
});
});
});
Thanks for the suggestion. I'm stumped on the .api reference as well, as I have been unable to find anything related throughout the project.
– Justin Bryeans
Nov 17 '18 at 1:26
Check to see what jQuery plugins are in the project. Probably some clues there. Good luck!
– Phix
Nov 17 '18 at 5:44
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53346582%2fclose-stop-playing-video%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Untested, but something along these lines. Not sure what .api()
is.
jQuery(document).ready(function(){
jQuery('#view_video').click(function(){
jQuery('.video_need').animate({
height: 'show'
});
jQuery('.video_need iframe').api("play");
});
jQuery('#close_video').click(function(){
jQuery('.video_need').animate({
height: 'hide'
}, {
duration: 1000,
// animation completion callback
complete: function() {
jQuery('.video_need iframe').api("stop");
}
});
});
});
Thanks for the suggestion. I'm stumped on the .api reference as well, as I have been unable to find anything related throughout the project.
– Justin Bryeans
Nov 17 '18 at 1:26
Check to see what jQuery plugins are in the project. Probably some clues there. Good luck!
– Phix
Nov 17 '18 at 5:44
add a comment |
Untested, but something along these lines. Not sure what .api()
is.
jQuery(document).ready(function(){
jQuery('#view_video').click(function(){
jQuery('.video_need').animate({
height: 'show'
});
jQuery('.video_need iframe').api("play");
});
jQuery('#close_video').click(function(){
jQuery('.video_need').animate({
height: 'hide'
}, {
duration: 1000,
// animation completion callback
complete: function() {
jQuery('.video_need iframe').api("stop");
}
});
});
});
Thanks for the suggestion. I'm stumped on the .api reference as well, as I have been unable to find anything related throughout the project.
– Justin Bryeans
Nov 17 '18 at 1:26
Check to see what jQuery plugins are in the project. Probably some clues there. Good luck!
– Phix
Nov 17 '18 at 5:44
add a comment |
Untested, but something along these lines. Not sure what .api()
is.
jQuery(document).ready(function(){
jQuery('#view_video').click(function(){
jQuery('.video_need').animate({
height: 'show'
});
jQuery('.video_need iframe').api("play");
});
jQuery('#close_video').click(function(){
jQuery('.video_need').animate({
height: 'hide'
}, {
duration: 1000,
// animation completion callback
complete: function() {
jQuery('.video_need iframe').api("stop");
}
});
});
});
Untested, but something along these lines. Not sure what .api()
is.
jQuery(document).ready(function(){
jQuery('#view_video').click(function(){
jQuery('.video_need').animate({
height: 'show'
});
jQuery('.video_need iframe').api("play");
});
jQuery('#close_video').click(function(){
jQuery('.video_need').animate({
height: 'hide'
}, {
duration: 1000,
// animation completion callback
complete: function() {
jQuery('.video_need iframe').api("stop");
}
});
});
});
answered Nov 16 '18 at 23:24
PhixPhix
4,76121949
4,76121949
Thanks for the suggestion. I'm stumped on the .api reference as well, as I have been unable to find anything related throughout the project.
– Justin Bryeans
Nov 17 '18 at 1:26
Check to see what jQuery plugins are in the project. Probably some clues there. Good luck!
– Phix
Nov 17 '18 at 5:44
add a comment |
Thanks for the suggestion. I'm stumped on the .api reference as well, as I have been unable to find anything related throughout the project.
– Justin Bryeans
Nov 17 '18 at 1:26
Check to see what jQuery plugins are in the project. Probably some clues there. Good luck!
– Phix
Nov 17 '18 at 5:44
Thanks for the suggestion. I'm stumped on the .api reference as well, as I have been unable to find anything related throughout the project.
– Justin Bryeans
Nov 17 '18 at 1:26
Thanks for the suggestion. I'm stumped on the .api reference as well, as I have been unable to find anything related throughout the project.
– Justin Bryeans
Nov 17 '18 at 1:26
Check to see what jQuery plugins are in the project. Probably some clues there. Good luck!
– Phix
Nov 17 '18 at 5:44
Check to see what jQuery plugins are in the project. Probably some clues there. Good luck!
– Phix
Nov 17 '18 at 5:44
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53346582%2fclose-stop-playing-video%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
try this :jsfiddle.net/nkfH4
– i_th
Nov 17 '18 at 4:36