Posts by Harison • 137 points
13 posts
-
4
votes1
answer436
viewsQ: How to shuffle string list in c#?
I have a console application, in which there is a list: List <string> ListaFrases = new List<string>(); This list is built through user inputs in the console. How to display your…
-
0
votes0
answers38
viewsQ: Unwanted space when adding a Google Font
When using the source Source Sans Pro of Google Font, I noticed that just after the footer appears a spacing of 1px, at the end of the Document if it is loaded into the Internet Explorer (version…
-
-2
votes1
answer108
viewsQ: What is this unknown space?
Website: http://hfoliveira.com.br/MAQUES/CONT.html Here is the problem shown: imageshack.com/a/img909/690/Ajeilg.png The other question was I who posted, posted again because I have not yet had an…
-
2
votes2
answers205
viewsQ: Unwanted 1px space in Internet Explorer
On my website, below the footer is a space of 1px that only occurs in Internet Explorer. In my case, I’m using the IE-10. The footer has fixed positioning, I inserted it outside the container of the…
-
1
votes1
answer72
viewsQ: Jquery does not return second image in the list
Apparently, the code is correct, it’s as follows: { if( $(".ativo").next().size() ) { $(".ativo").fadeOut().removeClass("ativo").next().fadeIn().addClass("ativo") } else {…
-
1
votes1
answer228
viewsQ: How to make a div of equal height to the div container? (container larger than viewport)
Since I don’t want to define the height of the container div, because I want it to increase dynamically according to the content? <div class="conteiner"> <div class="esquerda">…
-
0
votes1
answer494
viewsQ: How to make a div with 100% height? (passing viewport)
I want to put a background image in this div, I’ve tried with height:100% but the height of the div is limited to the height of the viewport, and when you scroll down, the div ends, and also the…
-
-1
votes1
answer144
viewsQ: Is there a way to create a jquery slide that takes up 100% of the screen?
How to create a slide with Jquery that takes up 100% of the screen? It is to make an animated footer with thumbnail images.
-
0
votes2
answers1509
viewsQ: Order queue in c#
Since I already have this code: Queue<string> Fila = new Queue<string>(); //Declaração da Fila string opcao = "1"; //Define opção como 1 while (opcao == "1") //Enquanto ele quiser…
-
1
votes2
answers596
viewsQ: How to display the content of a queue?
I say this because I have created the Fila: Queue<string> Fila = new Queue<string>(); But I can’t show it, string Pedido = (("Cliente:") + Cliente + (Environment.NewLine + "Produto:") +…
-
1
votes1
answer302
viewsQ: How to create variables for the status of an order?
How can I create variables to serve as possible order status? After the order already made, I want to create options so that when the attendant type, the order status is changed. The options can be:…
-
2
votes1
answer7046
viewsQ: How to execute a function when the mouse is over a given element?
How to create a generic javascript function that runs only on the element the mouse is currently on top of?
-
3
votes2
answers361
viewsQ: Return div to initial position after animation?
How can I return mine div to the starting position if it reaches a certain point on the left? I have the following current code: $(document).ready(function() { $("#botao").click(function() {…