Posts by py_9 • 177 points
8 posts
-
1
votes1
answer93
viewsQ: How to do div with scroll, when it reaches a certain limit of div height?
How can I get my div, whose text is added through a append jQuery, scroll when the text reaches 100px, and all the added text then stay hidden, and you need to scroll to see the rest?…
-
-1
votes1
answer376
viewsQ: How to fix button at the bottom of a page without moving?
I have a page with navbar and with a div which contains a logo, a paragraph with text and then a button, all in the same div, each component below the other in the order referred to above. My…
-
-1
votes1
answer707
viewsQ: How to use Google Maps API with Google Directions API?
Hi, I am using the Google Maps API and want to be able to click, for example, a previously created point on the map and get directions from my location to the selected point. For that I am trying to…
-
2
votes3
answers3985
viewsQ: Centralize div de class="Row" with bootstrap
Does anyone have any idea how to center these buttons that are inside a div with class="row", how is centered the above container saying "Permissions", with Bootstrap and so that they are…
-
0
votes2
answers2296
viewsQ: Bootstrap - container with two columns and two rows of the same size
Boas, I’m trying to make a container with 4 equal cells, that is, 2 columns and 2 rows. I’ve tried using col and Row but nothing works. I’ve just got this, right now. <div id="container">…
-
2
votes2
answers323
viewsQ: Python accumulator list
I am developing a function that takes 3 parameters fctn(Function, list, element) and that it has to return a list with the intermediate states of the accumulator, as in the example below:…
-
3
votes2
answers599
viewsQ: List of square roots
How can I make a function that takes a parameter n, return a list of the first n square roots, using higher-order functions, in Python. As shown below: [sqrt(1), sqrt(1)+sqrt(2),…
-
7
votes3
answers11228
viewsQ: How to timer in Javascript
I need help to make a timer for a page, and it has to be different for every difficulty of a game, for example, for easy mode it has 1 minute, for intermediate it has 4 minutes, and for hard 8…