Posts by Pedro Junior • 66 points
5 posts
-
0
votes1
answer295
viewsA: Change logo image when from navbar-inverse CSS class
From what I understand you already have a script that changes the color when scrolling the page, so is add in your logic the code: document.getElementById("minhaDiv").src="suaImagem.jpg";…
-
0
votes1
answer151
viewsA: How to position buttons in the bottom corner
With respect to the Button you can use the concept of Flexbox to position it below its content. In the code I pass the display as flex and say the direction of the contents of div container follows…
-
0
votes3
answers205
viewsA: React-chartjs-2 graphics do not load on screen
The error may be in the life cycle of your component and your data. In this case the data arrives after rendering its component, then the component is rendered empty (no data).
-
1
votes1
answer842
viewsA: Touch screen style horizontal scrolling (click and drag) menu on Pcs
Yes, but for this you will need a javascript knowledge, you can use jQuery. This link has all the Draggable documentation that you need to use https://jqueryui.com/draggable/ The first example shown…
-
4
votes2
answers791
viewsA: Align HTML + CSS component
You can use the properties and values display: flex and Justify-content: space-between in the father div .divPai { width: 100%; display: flex; justify-content: space-between; } <div…