Skip to main content

How do I get the HTML5 Video pause() method to work?

I have a HTML video with a DIV containing custom controls over it.

The play button works perfectly fine, but the pause button does not. There are two wird things:

  1. The media.pause() method just does not seem to work at all, like it would not even be there.
  2. The .addClass() and .removeClass() after media.pause() are not working either, but when I put console.log('anything'); below it in the code, it prints in the console. Also the objects that it is called on are there (console.log-ed it).
// play video
$('.funnel-video-poster').on('click', function() {

  var video_id = $(this).data('video-id');

  document.getElementById(video_id).play();

  $(this).find('.FVP-btn-play').addClass('hidden');
  $(this).find('.FVP-btn-pause').removeClass('hidden');
});

// pause video
$('.FVP-btn-pause').on('click', function() {

  var $poster = $(this).closest('.funnel-video-poster'),
    video_id = $poster.data('video-id');

  var media = document.querySelector('#' + video_id);
  media.pause();

  console.log(media);

  $poster.find('.FVP-btn-play').removeClass('hidden');
  $poster.find('.FVP-btn-pause').addClass('hidden');

  console.log($poster.find('.FVP-btn-play'));
  console.log($poster.find('.FVP-btn-pause'));
});
.funnel-block .funnel-video video {
    display: block;
    margin: 0 auto;
}

.funnel-block .funnel-video .funnel-video-poster {
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}

.funnel-block .funnel-video .funnel-video-poster.see-thru {
    background: transparent !important;
}

.funnel-block .funnel-video .funnel-video-poster .FVP-btn-play {
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    background: #3c3c3c;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    border-radius: 50%;
}

.funnel-block .funnel-video .funnel-video-poster .FVP-btn-pause {    
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    background: #3c3c3c;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    bottom: .25rem;
    left: 50%;
    transform: translate(-50%, 0);
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class="funnel-block">


  <div class="py-5 funnel-video">
    <video poster="https://www.tomasbradle.eu/webroot/stored_data/funnel_videos/funnel_block_50_ea8dec6d.png" id="funnel_video_50" equalizer-state="attached" width="640" height="360">
      <source src="https://www.tomasbradle.eu/webroot/stored_data/funnel_videos/funnel_block_50_ea8dec6d.mp4">
      Your browser does not support HTML 5 video
    </video>
    <div class="funnel-video-poster see-thru" data-video-id="funnel_video_50" style="width:640px;height:360px;margin-top:-360px">
      <div class="FVP-btn-play hidden">Play</div>
      <div class="FVP-btn-pause">Pause</div>
    </div>
  </div>
</div>
Via Active questions tagged javascript - Stack Overflow https://ift.tt/HOGBID2

Comments

Popular posts from this blog

ValueError: X has 10 features, but LinearRegression is expecting 1 features as input

So, I am trying to predict the model but its throwing error like it has 10 features but it expacts only 1. So I am confused can anyone help me with it? more importantly its not working for me when my friend runs it. It works perfectly fine dose anyone know the reason about it? cv = KFold(n_splits = 10) all_loss = [] for i in range(9): # 1st for loop over polynomial orders poly_order = i X_train = make_polynomial(x, poly_order) loss_at_order = [] # initiate a set to collect loss for CV for train_index, test_index in cv.split(X_train): print('TRAIN:', train_index, 'TEST:', test_index) X_train_cv, X_test_cv = X_train[train_index], X_test[test_index] t_train_cv, t_test_cv = t[train_index], t[test_index] reg.fit(X_train_cv, t_train_cv) loss_at_order.append(np.mean((t_test_cv - reg.predict(X_test_cv))**2)) # collect loss at fold all_loss.append(np.mean(loss_at_order)) # collect loss at order plt.plot(np.log(al...

Sorting large arrays of big numeric stings

I was solving bigSorting() problem from hackerrank: Consider an array of numeric strings where each string is a positive number with anywhere from to digits. Sort the array's elements in non-decreasing, or ascending order of their integer values and return the sorted array. I know it works as follows: def bigSorting(unsorted): return sorted(unsorted, key=int) But I didnt guess this approach earlier. Initially I tried below: def bigSorting(unsorted): int_unsorted = [int(i) for i in unsorted] int_sorted = sorted(int_unsorted) return [str(i) for i in int_sorted] However, for some of the test cases, it was showing time limit exceeded. Why is it so? PS: I dont know exactly what those test cases were as hacker rank does not reveal all test cases. source https://stackoverflow.com/questions/73007397/sorting-large-arrays-of-big-numeric-stings

How to load Javascript with imported modules?

I am trying to import modules from tensorflowjs, and below is my code. test.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title </head> <body> <script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@2.0.0/dist/tf.min.js"></script> <script type="module" src="./test.js"></script> </body> </html> test.js import * as tf from "./node_modules/@tensorflow/tfjs"; import {loadGraphModel} from "./node_modules/@tensorflow/tfjs-converter"; const MODEL_URL = './model.json'; const model = await loadGraphModel(MODEL_URL); const cat = document.getElementById('cat'); model.execute(tf.browser.fromPixels(cat)); Besides, I run the server using python -m http.server in my command prompt(Windows 10), and this is the error prompt in the console log of my browser: Failed to loa...