Posts by SHRIMP • 441 points
21 posts
-
1
votes3
answers952
viewsA: Change color of the Sidemenu icon
within the project has the file variables.scss where you will set all the colors of your code. $colors: ( primary: #488aff, secondary: #32db64, danger: #f53d3d, light: #f4f4f4, dark: #222, suaCor:…
-
1
votes1
answer5065
viewsQ: How to navigate between pages using buttons with Ionic?
I’m trying to understand how to navigate between pages with ionic2. I want that by clicking the button below it redirect me to HomePage, how can I do this? Button in.html menu <button ion-button…
-
1
votes2
answers499
viewsQ: How to make a Mask input by simulating money with Ionic 2?
I believe the question is already well explained, but I would like to know how I can create a mask using decimal numbers to simulate the actual mints ( 1.000,00).
-
2
votes1
answer1008
viewsA: Link is not clickable
Your code apparently presents no problem with the function of the link. <section class="ftco-section-2"> <div class="container d-flex" id="franquia"> <div…
-
0
votes1
answer290
viewsQ: Checkbox calling button with Ionic 2
I’m simulating something similar to a shopping cart using ionic 2. Basically you write the item name and value and create a checkbox list as in the image below. But I wanted the option only appeared…
-
2
votes0
answers44
viewsQ: Android Error: Apache Httpclient does not exist
Now it is mandatory by google to have in the code that updating where the version of targetSdkVersionto apply the latest API’s to applications. I changed the values of SdkVersion to 26 as…
-
0
votes3
answers523
viewsQ: How to make a panel with double information with <tr>
I can understand basic handling of <tr>, as in the example below where we have information on each line. <!DOCTYPE html> <html> <head> <style> table, th, td { border:…
-
5
votes2
answers1117
viewsA: Link button is not clickable
Your syntax as commented is incorrect. You put the button within the <a>, that can result in mistakes. You can set a button as a class, it makes sense to leave inside a <a> as you tried…
-
4
votes0
answers160
viewsQ: How to make the player move on "slide" in Unity?
I’m new to Unity and I’m doing the tutorial Roguelike 2D. By default the player will move, theoretically, using one of those coordinates per shift y+1, x+1, y-1, x-1, or just one block at a time.…
-
3
votes3
answers4164
viewsA: Mask for Ionic 3
See what found in the forum of ionic. By the comments works inside the input. Put this data on html: <form #loginForm="ngForm"> <ion-item> <ion-label…
-
3
votes4
answers174
viewsA: Comments weigh the code in C#?
Like C# is usually used in compiled form, the compiler himself leaves comments aside, that is, they do not interfere with the size or performance of your program. Comments are definitely not…
-
1
votes1
answer3684
viewsQ: How to display text with the Onmouseover() function
I’m learning to mess with javascript, and looking that snippet which shows the map of Brazil and its states I have a doubt. How can I make appear the name of the state by placing the mouse over the…
javascriptasked SHRIMP 441 -
2
votes2
answers362
viewsQ: Problem with bootstrap responsiveness
I’m having trouble aligning the responsiveness of my dashboard. Here’s an image of how it looks on large screens. But if I lower the screen a little bit it shuffles like this: Below the code snippet…
-
0
votes1
answer357
viewsQ: How to delete a word from every project in Visual Code
I want to delete that piece of code ng-show="$ctrl.state == 'downloading' which was set several times, but as the code is extensive it takes a lot of work to delete one by one. I’m using Visual…
visual-studio-codeasked SHRIMP 441 -
3
votes1
answer678
viewsQ: how to make a background Pattern with CSS?
I was looking at the bootstrap templates and this template caught my attention because its background is done with the technique Pattern, ie it has only an image that repeats itself "perfectly"…
-
1
votes3
answers657
viewsQ: How to move to the next input using javascript?
I set up a form in HTML but I wanted when a user pressed the ENTER key it went to the next field. Example, the first field has to fill with the name, when the person pressed ENTER it would go to the…
javascriptasked SHRIMP 441 -
1
votes1
answer407
viewsQ: Page does not load SCSS file
I’m learning web development and started messing with SCSS in a layout but the browser is not pulling the same. It is being called along with the CSS that is working normally on the page. <link…
-
0
votes2
answers60
viewsQ: Is it possible to create a class within a list?
I am mounting a list that has an image and its size in the same line according to the code below. <tr> <th> <img src="images/radio1.jpg" width="48px" , height="48px" /> </th>…
-
0
votes1
answer328
viewsQ: How to move a logo inside the <div>
I’m trying to center the logo on this panel by dragging it to the left. Here’s my HTML code where I quote it <div class="logoLogin"> <img src="images/perfil-black.png"> <div> I’ve…
-
0
votes1
answer98
viewsQ: How to put image in a <thead> list
I am a beginner in programming and am putting together a list using thead and I was wondering how can I put an image inside the <th>. My code below: <thead> <tr>…
-
3
votes1
answer1728
viewsQ: image does not appear in html 5
I’m trying to put an image in a panel using HTML5 but it’s not recognizing. In the standard panel was this way: <a href="index.html" class="site_title"><i class="fa fa-paw"></i>…