Most voted "touch" questions
20 questions
Sort by count of
-
9
votes2
answers3327
viewsHow to make a motion system using touch in Unity?
When sliding your finger up screen executes the command and when sliding your finger down executes the command, an example of command would be a move up and a move down with the touch me return a…
-
5
votes2
answers498
viewsView navbar only when user scrolls up on iOS
I’m using the technique of Marius Craciunoiu to display my entire navbar when the user scrolls the screen up. So, here’s my code Javascript (using jQuery): var delta, didScroll, lastScrollTop,…
-
4
votes2
answers111
viewsMobile Swipe: Hangs when moving your finger on the screen quickly
Hello, I’m studying Touch Events and making an example of a page with full sections that passes one by one on the screen. I did the CSS, HTML and Script, the basic works... But when I test on the…
-
3
votes1
answer1001
viewsCarousel with touch screen interaction
I have a Carousel that navigation is through the right/left arrows. In mobile, the user must be able to "drag" the Carousel, without using arrows to navigate. I’m wearing the bootstrap cap. I need…
-
3
votes0
answers83
viewsXamarin Android - Create a line where your finger goes
Hello, I would like to create a straight or rectangular, where my finger goes. Actually, it doesn’t have to be exactly where you go, but on top of every button I pass the finger it will increase the…
-
2
votes3
answers420
viewsDouble Tap Opens Two Activitys Android
I’m having a problem with a list where I use a RecyclerView, by clicking on an item in the list, OnClickListener is dealt with in the ViewHolder that RecyclerView:Meuviewholder: public…
-
2
votes0
answers30
viewsDetect with javascript ringtones
Detect Multiple Touches in Java Scribe
touchasked 5 years, 2 months ago user161306 105 -
1
votes1
answer74
viewsScreen touch recognition such as Mousedown
I’m developing a game (Puzzle) in C# Winforms, to run on a touch screen. The mapping of touch events to mouse events already occurs by default, and I didn’t have to do anything to make it happen.…
-
1
votes1
answer424
viewsHow do I limit a character’s motion (Touch) to 3 specific points? Unity C#
I would like to know how to limit the position of a character in the Y axis in the Up, Mid, Down positions. In the game the character runs while obstacles arise and dragging his finger up, if he is…
-
1
votes3
answers542
viewsWhat do you call that "view change" effect by sliding?
Several apps (Facebook, Twitter, Instagram) make use of a "touch enabled" effect where the user drags the entire screen and it changes the view. Do not confuse with the "slide" effect of the menu. I…
-
1
votes0
answers37
viewsBlock iframe in mobile
I wonder if it is possible to block the scroll of a <iframe> preferably in mobile because when I roll the page with the touch of the screen the map disturbs follows a part of the code…
-
1
votes1
answer842
viewsTouch screen style horizontal scrolling (click and drag) menu on Pcs
Using the menu below, it is possible to make it slider as in mobile phones (without having to use the scroll bar, just by clicking and dragging)? ul.marcadores {white-space:nowrap; overflow-x:auto;…
-
1
votes1
answer107
viewsHow to detect if the device is touch in pure javascript?
I need to add touch events only if necessary. If the device is not touch, I will only add mouse events. For this, I need to check and have a return. It is important, if possible, that the code is in…
-
1
votes1
answer405
viewsSimulate click touchscreen in python
I need to create a python function that can create a click holding it while a second click is started and finished during the duration of the first. Using the mouse, this is not possible, however,…
-
0
votes1
answer54
viewsdropdpwn menu does not work on touch
I’m in the following trouble I made this website but by accessing it on mobile and clicking on the menu it expands to a dropown on the tab what we offer and when I click on a link it does not work…
-
0
votes1
answer805
viewsAndroid Studio Screen - Block Completely Touch
My question is the following, I have an Activity that finalizes an order and inserts the data of that request in the database and it takes a little time.... I wonder if there is any way to lock the…
-
0
votes1
answer1054
viewsHow to make a scroll with arrows?
I am working on a project for application in touch screen monitor, and I need to do the schematic as the following image. It will be a list of items, inside a div for example, and it will have to be…
-
0
votes1
answer145
viewsSpecific hover for touch
Is there a CSS hover for touch? Or emulate one with javascript that only turns on if it’s touch?
-
0
votes1
answer37
viewsAngular: Problems with Touchevents
I need to detect a touchstart, one touchend and a touchmove to make a selection of days as the user drags his finger on the screen. However touchmove apparently not made for this purpose. As an…
-
0
votes2
answers38
viewsHow to make continuous increment with React Native Touchable?
Is there any property in the TouchableOpacity React Native which, when I pressed the increment button and held the touch, continued incrementing the values? For example, I have this button:…