Community Discussions
Explore the latest discussions and community conversations related to this domain.
Little Mix - Touch (Official Video)
Main Post: Little Mix - Touch (Official Video)
Top Comment: This was not the video they needed to become popular in the States
Dell XPS 13 Plus - Touch Bar Pressing Itself (Video of Keyboard Test in BIOS)
Main Post: Dell XPS 13 Plus - Touch Bar Pressing Itself (Video of Keyboard Test in BIOS)
Top Comment:
I think I'm going to return this laptop - at nearly $2K USD I shouldn't have to worry that the keyboard will press itself. It started happening when using the laptop normally, so I disconnected everything and turned bluetooth off to make sure it wasn't my keyboard.
I then re-started it into BIOS and went into diagnostic testing - the keyboard one and I could clearly see (in video) the touchbar keys pressing themselves.
EDIT* After restarting twice this fixed itself. Considering I've been using this laptop less than a week I find it completely unacceptable, and I'm willing to bet these problems will only get worse as time goes on.
Finally got the ghost touch on video, now what?
Main Post: Finally got the ghost touch on video, now what?
Top Comment:
The last three days my note 10 plus has started to do this ghost touch thing, it only touches one small area on my phone but it's enough to stop me from doing anything. Some times it happens for just a few seconds, other times it does it for over a minute straight. It's deleted my amazon app a bunch of times already lol. I'm still under manufacturer warranty but I'm hoping this is a software thing and not a hardware thing. (Wishful thinking) anyone run into this problem before?
Also I enabled touch mapping so I can see where and how the touches are being picked up hench the crosshairs and coordinates on the top of the screen.
Is there a way to fix javascript "touch" events firing twice on IOS? (Video included)
Main Post:
I'm working on a webpage that uses a carousel to show content on devices with smaller screen sizes. I cooked up some javascript to create a makeshift "swipe" function on mobile devices and it works perfectly fine on android devices. However, on SOME iPhones (ones running the newer versions of IOS) the event seems to be triggered twice.
I've been researching this for various days, and although I've found SO questions that present similar scenarios, none are quite the same. Usually, the "similar scenarios" that I've found have two events being binded and thats what triggers the function twice. For example, $button.bind("touchstart click");
That, however, is not my problem.
My problem is that the $("#mobileCarousel").on("touchstart") seems to be firing twice on iPhones with the newer IOSs. I have no other events being binded, just the "touch."
Here is a video example of what is happening: https://youtu.be/8XGMKTpUUrI
I've included the js, css, and html.
I've been losing sleep over this, so any tips/solutions on how to fix this would be greatly appreciated. :D
The JS
$("#mobileCarousel").carousel({ interval: 10000 }) $("#mobileCarousel").on("touchstart", function(event){ var xClick = event.originalEvent.touches[0].pageX; $(this).one("touchmove", function(event){ var xMove = event.originalEvent.touches[0].pageX; if( Math.floor(xClick - xMove) > 3 ){ $(this).carousel('next'); console.log("the touch event is firing twice."); } else if( Math.floor(xClick - xMove) < -3 ){ $(this).carousel('prev'); console.log("the touch event is firing twice."); } }); $(".carousel").on("touchend", function(){ $(this).off("touchmove"); }); }); $(".carousel carousel-item").each(function(){ var minPerSlide = 3; var nextElement = $(this).next(); if(!nextElement.length){ nextElement = $(this).siblings(":first"); } nextElement.children(':first-child').clone().appendTo($(this)); for (var i = 0; i < minPerSlide; i++) { nextElement = nextElement.next(); if(!nextElement.length){ nextElement = $(this).siblings(":first"); } nextElement.children(":first-child").clone().appendTo($(this)); } });The CSS
@media only screen and (max-width: 993px) { .carousel-inner .carousel-item > div { display: none; } .carousel-inner .carousel-item > div:first-child { display: block; } }The HTML
<div class="container-fluid carousel-container d-lg-none d-xl-none"> <div id="mobileCarousel" class="carousel slide w-100" data-ride="carousel"> <div class="carousel-inner" role="listbox"> <div class="carousel-item active"> <div class="card index-card border-success"> <div class="d-flex justify-content-center"> <img src="code icon.png" alt=""> </div> <div class="d-flex justify-content-center"> <p class="pTagsForCardTitles"><HTML> and CSS3</p> </div> <div class="d-flex justify-content-center"> <p class="pTagsForCards d-flex justify-content-center">We design and program your website from scratch and to your liking. No restrictive templates! Have the website you have always dreamt of for your business.</p> </div> </div> </div> <div class="carousel-item"> <div class="card index-card border-success"> <div class="d-flex justify-content-center"> <img src="shield icon.png" alt=""> </div> <div class="d-flex justify-content-center"> <p class="pTagsForCardTitles">Online Security</p> </div> <p class="pTagsForCards d-flex justify-content-center">Tropiweb supplies SSL security certificates to every page it produces. Keep your transactions and clients' sensitive informations out of the wrong hands.</p> </div> </div> <div class="carousel-item"> <div class="card index-card border-success"> <div class="d-flex justify-content-center"> <img src="search icon.png" alt=""> </div> <div class="d-flex justify-content-center"> <p class="pTagsForCardTitles">Search Engine Optimization</p> </div> <p class="pTagsForCards d-flex justify-content-center">We optimize your web-page's <meta>, <alt>, and <title> tags in order to maximize the probability of potential clients finding you through any search engine</p> </div> </div> <div class="carousel-item"> <div class="card index-card border-success"> <div class="d-flex justify-content-center"> <img src="responsive icon.png" alt=""> </div> <div class="d-flex justify-content-center"> <p class="pTagsForCardTitles">Sleek and Responsive</p> </div> <p class="pTagsForCards d-flex justify-content-center">Your website is designed with cross-platform compatability as a priority. No matter the web-browser or device (tablet, laptop, or phone) your page will always function properly.</p> </div> </div> <div class="carousel-item"> <div class="card index-card border-success"> <div class="d-flex justify-content-center"> <img src="money icon.png" alt=""> </div> <div class="d-flex justify-content-center"> <p class="pTagsForCardTitles">E-Commerce Solutions</p> </div> <p class="pTagsForCards d-flex justify-content-center">Run your online shop right from your very own website. Validate transactions, keep stock of your merchandise, charge applicable sales taxes, and ship your product with no hassle.</p> </div> </div> </div> <a class="carousel-control-prev" href="#mobileCarousel" role="button" data-slide="prev"> <span> <img class="carousel-arrow-right" src="flecha-de.png" alt=""> </span> <span class="sr-only">Previous</span> </a> <a class="carousel-control-next" href="#mobileCarousel" role="button" data-slide="next"> <span> <img class="carousel-arrow-left" src="flecha-iz.png" alt=""> </span> <span class="sr-only">Next</span> </a> </div> </div>Top Comment: You are adding a new event listener in the handler of another event listener, that inner one will get added many times. Are you sure that it's the "touchstart" event that's firing multiple times not the "touchmove" event?
Macbook Pro: Chrome doesn’t support youtube video scrubbing in touch bar? : macbookpro
Main Post: Macbook Pro: Chrome doesn’t support youtube video scrubbing in touch bar? : macbookpro
Suggest me a video player for touch Device
Main Post:
Can someone suggest me a video player (preferably free) which support touch gestures like swipe to skip; double tap to forward; pinch in/out to zoom. Slide to increase/decrease volume etc.
Basically looking for any Android video player features on windows. VLC uwp app is not that good for touch interface. I have tried ACG player and CCPlayer but did not like its UI.
Top Comment:
Have you tried googling the name of one of the apps you mentioned followed by the word "alternatives", that pretty much almost always shows me the best options available in the first 10 or so suggested links. If you specifically want a free one try including that in the search terms as well to narrow it down.
Video proof of me lagging every time i touch the ball
Main Post: Video proof of me lagging every time i touch the ball
Top Comment: Check your button bindings and make sure voice chat isn’t a button your using. For some reason it makes me of the same as that, I had it bound to my boost button and that was the problem. Voice chat ask ways been bugged
Ace Attorney Investigations parody video with the song "Can't Touch Me"
Main Post:
Basically what it says. It was a video that took a parody song from Family Guy (Can't Touch Me) and applied it to the plot of AAI. Quercus Alba sang it. Now I can't find it anywhere.
Top Comment:
u/DBZfan102, you must add a comment in this post before anyone will see it. Your comment MUST include the word "searched" and detail what searches you've done. Your post will not be visible until you do so. Your inbox should have more details or here are general instructions.
Supply as many details as you can. These include, if applicable, but are not limited to: size, origin (store, geographic location, country), age/year acquired, and any writing on the item. Additional pictures can be added as a comment in this post.
If you are actively asking for help searching for this elsewhere - another sub or website - link to that search as well to avoid duplicating efforts.
Remember to reply Found! (include the exclamation point) to the comment that gives the answer. If looking for an item to purchase, do not click on links sent to you in private messages, and report such to the moderators.
For all participants, remember that all comments must be civil and helpful toward finding an answer.
Jokes and unhelpful responses will earn you a ban, even on the first instance. If you see any comments that violate this rule, please report them.
I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.