I recently dug up a bit more in UX's mobile design, and I found an interesting topic regarding the choice of 1 hand / thumb.
The basic idea is that you have two areas of the triangle that you can click with your finger. I tried to find a solution using CSS or jQuery to create 2 areas of the triangle that can be clicked / touched, but I failed.
I tried:
- font icons
- svgs (this did not work, since svgs are still rectangular)
- divs with borders formed into a triangle
- canvas (did not work out so well)
- ASCII fonts
- jQuery, nothing really useful on this front: /
- rotated divs (CSS conversion)
Do you have any suggestion on how I can reach 2 sensitive triangles that fit the screen, do not overlap, like on this screen, which are accessible and accessible in the DOM?
The main point from the point of view of the user interface is that users need to visually see the sensory areas (visually) in order to determine the possibility of interaction. Getting the click area (in triangle style) is most likely not a problem. However, showing users that they should interact in a specific area is key.
I do not want to have scaled or different versions of the images! I'd like to see a CSS or JavaScript solution ...
I think the biggest problem is that the triangle is not proportional + responsiveness
This picture should illustrate the idea: a responsive triangle http://s7.directupload.net/images/140212/7q8q4nha.jpg
jquery css html5 canvas
en4ce
source share