Owl Carousel Double Dots in Mobile - html

I'm facing a problem with the dots of owl carousel lib in mobile. When you click in one dot to see another item of the carousel, and then pass the slider to see another one, it stays activated. Don't know what to do.
And here's the link to the live version:
https://victorsaisse.com/carousel/
Thank you

Related

owl carousel : first slide not trigger action

I'm trying do a food menu with owl carousel, but on first slide actions are not triggering, if I press next button it will go to next slide works fine, by pressing previous button can come to main menu and flow is works fine main menu start clickable, only when its load main menu not triggering any action. By pressing next any previous works fine.
http://globalsolutions.work/twin4/main-menu/staters/index.html
How to trigger action after page load, any help ?
if you follow the basic structure of owl carousel then this type of problem will now appear
you can check this documentation form here or still you facing the issue please add your code https://owlcarousel2.github.io/OwlCarousel2/docs/started-installation.html

How would I make ionic segment swipeable when I slide the slider of the content

I'm trying to implement a slider feature whenever a user slides the page in ionic application. To elaborate, when I swipe the slider the segment button does highlights but the remaining segment buttons are hidden where I have to swipe the slider manually. Is there any way to make the whole segment slide as when I swipe the content?
I found the solution by using angular animation and translating the segment component horizontally. How you are going to use animation depends upon you.

dart: polymer scaffold - drawer not closing after menu selection

I am using core-scaffold, and in general it works nicely (mainly). When I drag the window smaller (desktop), the drawer hides and the hamburger menu button appears and is functional. However, when I select an item in the menu/drawer, the drawer does not retract. Viewing my webpage on a phone is not satisfactory. But it does update the content correctly.
Is there some CSS that I should add?
I have tried importing core-animation, core-transition-pages which make no difference. A bit naive I think!
It can be seen on my (draft) webpage acsumama.com
thanks
Steve
I have tried the website that you reference acsumama.com, and adding the following onclick event in the menu link works
hope it helps.

Embeddable HTML Image Slider

I'm trying to make an image slider using Adobe Dreamweaver. Is there anywhere where I can find a customizable image "slideshow" in which there are arrows on the side which will allow the user to scroll through the images freely?
It can't be one where I need to download an extension first please.
Here you can try this http://unslider.com/ You can set arrows to navigate the images on the slider. Read its documentation for applying the arrows.

Slide menu in Windows Phone 8

I'm migrated from iOS dev to WIndows Phone dev and I have stumbled upon a problem.
I need to implement a side menu, that looks like the one in facebook app in ios. It shpuld slide from left to right. It should contain about 10 buttons (ListView). Presign the button should cause chaning the view (navigate to other xaml file)
Because of the huge difference between Windows Phone controls and iOS controls I want to ask an advice on how to better implement such menu. I've heard about aproach using Panorama. But would it look pretty?
I mean I'll have 10 different XAML files with different content. In each of them I'd have to add Panorama control and add the menu. And when I navigate to other XAML would it look nice? because it would close menu without any animation.
So please tell me what is the better approach in impelementing what I want? And how to navigate properly between all the XAMLs without loosing the animation of the menu. And of course how to avoid duplicating code in all the XAMLs? I guess XAML files could not be inherited. And of course I need it to support both WIndows Phone 8 and 8.1.
Thank you very much for you attension!
Here this a blog that will help you implement side menu like Facebook app. Link Hope this helps.
I just implemented something similar in my Dictionary app (http://www.windowsphone.com/s?appId=9f31b733-8c7b-e011-986b-78e7d1fa76f8). You will see that when you click the favorite or history icons on the top, it slides in a panel from the right. I implemented this by adding another Grid to the page whose left margin is set to the width of the page so that it basically sits to the right of the page, out of user's view. When the user taps one of the icons on top, I run a DoubleAnimation with a StoryBoard which does TranslateTransform on the X coordinate of the Grid and runs the StoryBoard for a duration of 3.5 seconds to give the user the perception of slide-in animation.
As far as having the same slide-in menu on each of the pages go, you have 2 options:
(a) Create the sliding panel as a user control and add it to each of the pages and on click of an item inside the panel, go to the second xaml page with the slide-in menu open and start the transition to hide it, or
(b) Create multiple grids within the same xaml page and simply hide/display the right one at the right time.
I believe you are speaking about the popular hamburger menu.
You can very well use the SlideView library. Here is the link,
https://slideview.codeplex.com/
The SlideView, a control allowing to slide between panels (2 or many more)
The SlideApplicationFrame, a control to use at top app level and packaged to display 3 panels with navigation occuring in the middle panel
The AutoHideBar, a control which is displayed when scrolling up in a list, and hidden when scrolling down