Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
23 views

I want to add a dragging or seeking capability into my VLC component on android. But could not find a reliable solution to it. Because when i drag the video frames repeat for some time. How to add ...
Shafi ul Hussnain's user avatar
0 votes
1 answer
81 views

I would like to know why image flicking while adjust it's brightness during adjustment. here is my script: from nicegui import ui from PIL import Image, ImageEnhance import io, base64 original_image = ...
Mohammad Eftekharian's user avatar
0 votes
0 answers
53 views

Sometimes in Chrome dragging the <input type="range"> slider doesn't work, the slider freezes. I figured out that this happens when that DOM element is selected by the user, which ...
root's user avatar
  • 2,946
1 vote
2 answers
210 views

I have a problem with SwiperJS slider - I would like to add for each item a box-shadow. When I wrap it with swiper CSS classes then I can see that overflow is hidden and crop my shadow. How can I ...
Matteor's user avatar
  • 51
3 votes
1 answer
60 views

I am using matplotlib's Slider to do a simple dynamic plot of a sine curve. I want to change the frequency using a slider. The code looks like this: import numpy as np import matplotlib.pyplot as plt ...
MTRS's user avatar
  • 75
0 votes
2 answers
92 views

I'm trying to create a slideshow gallery using Javascript that displays the caption in two different places in the html - above and below the slideshow. The reason for the redundancy is to incorporate ...
kent 's user avatar
0 votes
0 answers
52 views

I'm using Keen-slider in React project and have found a strange issue in sliders behaviour when it is wrapped with div and placed in grid column which width is defined in percents or in fr. In this ...
Evgeny's user avatar
  • 1
0 votes
0 answers
87 views

I need help with my flyout / slider main menu I have extracted it here on this website what I want Extracted draft page to describe my problem With this, I admit, outdated method, it works in a way, ...
Monique48149's user avatar
0 votes
1 answer
77 views

I'm a complete beginner in Javascript and I'm trying to integrate a slider for a website without a plugin, where the background is fixed and only text quotes slide in and out automatically. I have ...
kirschmond88's user avatar
0 votes
0 answers
104 views

Good morning, I am trying to show a fixed number of items in the Shopware 6.6.10.1 product slider (tiny slider), different per viewport. However, items within responsive do not seem to do anything, ...
Roy's user avatar
  • 1
0 votes
2 answers
154 views

In my .NET MAUI Application, I need to implement an audio progress slider similar to the one shown in the attached image. Image: The progress bar should: Fill dynamically as the audio plays. Pause ...
Matthew Pans's user avatar
0 votes
0 answers
14 views

First off, here's my code: $("#slider-range").slider({ range: true, min: 0, max: 500, values: [75, 300], slide: function(event, ui) { $("#amount").val("$" + ui.values[0] + " - $...
user7182273's user avatar
0 votes
1 answer
54 views

Changes from material 2 to 3 breaked a lot of customized color changes. I know that the main idea in material is to use themes, but I don't want to use a complex configuration to simply change an ...
Eagle's user avatar
  • 1,074
1 vote
0 answers
96 views

I'm attempting to make a responsive pure CSS slider/carousel which displays multiple slides at a time. I would like to make sure that only whole slides are visible within the visible bounds of the ...
WackGet's user avatar
  • 3,111
0 votes
0 answers
51 views

I'm working on edit content functionality with js where I've dynamically added contenteditable="true" to some HTML elements on click on "Edit text". When i click on "save"...
Ajinkya Salpe's user avatar
0 votes
0 answers
57 views

I ran into an issue where scrolling the circular slider in the Flutter app causes the chart to scroll unwantedly. I use PieChart and CircularSlider on the same screen, but when I scroll through the ...
Влад Гурковский's user avatar
0 votes
1 answer
119 views

I have following code: private fun initSlider() { binding.sSlider.addOnChangeListener { _, value: Float, _ -> if (!value.isNaN()) { viewModel.setValueFromSlider(value....
Tom11's user avatar
  • 2,575
0 votes
0 answers
30 views

issue output I'm working on a price range slider in a WordPress website using the Astra theme. The issue I'm facing is that the slider is not behaving as expected. html <div id="price-range&...
Raihan Hossain's user avatar
0 votes
1 answer
22 views

I'm trying to control the opacity of different mouth shapes within a precomp. This works well but not when this precomp is within a time remapped precomp. Even when I script the opacity of the mouth ...
Sybren's user avatar
  • 35
0 votes
0 answers
63 views

I'm trying to make a scatter plot that allows me to do a couple things: Toggle a selected date range that automatically displays the coordinates for each day within the range - I figure some sort of ...
Wayne's user avatar
  • 1
0 votes
1 answer
83 views

I have three sections of weather: current weather, 1-day forecast, and finally, 5-day forecast, all sharing the same class weather section but supposed to have different heights. I added a slide ...
Starnec's user avatar
  • 799
1 vote
0 answers
34 views

I added the following code into a jupyter notebook cell: # this is just a demo # line 2 # line 3 # line 4 def fib(n): if n<1: return 1 else: return fib(n-1)+fib(n-2) if ...
oyster's user avatar
  • 567
0 votes
0 answers
30 views

All the children always equal 100%. This means when I increase one child, all the other children are reduced. I want to change the slider value manually and by programming I am using typescript in a ...
sv savage's user avatar
0 votes
1 answer
54 views

I'm using an image slider on my website. It works well, except the buttons (circular dots) on the bottoms of the slider move down the screen when I resize the webpage. var counter = 1 setInterval(...
Richard's user avatar
  • 29
4 votes
1 answer
745 views

I recently updated material libraries and as I see now there is extra horizontal space around thumb, but could not find any info about how to remove it. Has anyone found a way to solve this issue? ...
Javokhir Sherbaev's user avatar

1
2 3 4 5
204