Posts by Kamile Pimenta • 651 points
17 posts
-
0
votes1
answer29
viewsQ: Pass Date icon component to parent component
Hello, I have a date with icons imported using the svg-Loader to render the Svgs on the page. But they arrive as { "Functional": true } and do not appear in the final HTML. Here’s an example of what…
-
0
votes0
answers24
viewsQ: Problem with server response when charting
I have a Dashboard with 8 screens that request the BD. The main file where they are (home page) makes the requests with the load() jQuery. In the individual screen files, each of them does a BD…
-
0
votes0
answers34
viewsQ: Firefox and Edge add link in filter url() how to resolve?
I’m using filter in the CSS to make an effect, but since it is SVG Filter, I use filter: url('#id'); but in Firefox and Edge browsers they increment a path forward that ends up removing the effect.…
-
3
votes1
answer47
viewsQ: What is the difference between 'CSS Filter Effects' and 'CSS filter() Function'?
I’m researching about browser support for the property filter of CSS and the tag <filter> of SVG. My search link: https://caniuse.com/#search=filter What’s the difference between CSS Filter…
-
6
votes1
answer69
viewsQ: What is the impact on the browser when there is infinite and direct interaction in HTML?
I have several polygons that change their points infinitely (while on the page), this interaction is done by a js plugin and in my code I have these calls: var config = { targets: '', points: [],…
-
0
votes3
answers47
viewsA: I’m having trouble aligning
First of all, inline css codes are not good practices, as well as hindering a lot in development and maintenance. Try using in imgs: display: block; margin: 0 auto;
-
0
votes1
answer30
viewsQ: SVG mosaic with cross-browser support, is it possible?
I have a project in which I would like to include a mosaic-shaped gallery, this would be responsive and interactive. At first, I thought about SVG for the free form and without loss of quality/…
-
0
votes2
answers78
viewsQ: SQL + PHP Query: Take only data from the current year from January to Today?
I need the return of data between 01/year to the present day. But I’m still not very familiar with SQL and PHP date(); Here is the excerpt from the code: $startMP = date('Y'); 'BETWEEN '{$startMP}…
-
1
votes2
answers161
viewsQ: 'addeventlistener is not a Function', why does this occur?
Hello! In my code the console displays me the following error: Uncaught Typeerror: d.addeventlistener is not a Function, I use Jquery. I already changed the addeventlistener for on, does not return…
-
4
votes5
answers2851
viewsA: How to put background-color on top of background-image
Hello! You can use pseudo elements like ::before or the ::after, follows an example: #background { position: relative; margin: 0 auto; width: 626px; height: 626px; background:…
-
1
votes1
answer41
viewsA: Several functions in one
Hello! It would be something like that: function formataPlanilha() { var ss = SpreadsheetApp.getActiveSpreadsheet(); var sheet = ss.getSheets()[0]; var nomes = [["DATA", "AUDITOR", "MEDIDAS…
javascriptanswered Kamile Pimenta 651 -
4
votes2
answers111
viewsQ: Mobile Swipe: Hangs when moving your finger on the screen quickly
Hello, I’m studying Touch Events and making an example of a page with full sections that passes one by one on the screen. I did the CSS, HTML and Script, the basic works... But when I test on the…
-
2
votes1
answer95
viewsQ: Incomplete SVG only in Chrome
I’m doing animations with SVG, using CSS. In Firefox works perfectly with Stroke + Fill gradient, in Edge it just ignores the gradient and in Chromefica everything right, however, it does not…
-
5
votes2
answers287
viewsA: Mysql query - Cross Tables count
The problem is in the use of the function DATE(), since it ends up hindering the use of the index. Think of the following: for each tuple, Mysql has to perform the function before checking if the…
-
2
votes1
answer4159
viewsA: FATAL ERROR: No such file or directory in Unknown on line 0
How it was working before the upgrade, must be something to do with this. This type of error usually occurs when Apache or PHP does not have access to the project folder/files. It may be that in the…
-
2
votes1
answer720
viewsA: SOAP WCF request in PHP
How are you dealing with Complex Type, the simplest way is to assemble the request part of XML (without BODY or HEADER) and send it directly using Soapvar. Here’s an example, based on the model you…
-
3
votes2
answers2069
viewsA: Doctrine: Manytomany’s Relationship with Extra Fields
One way to do it is to treat the third table (Porductsorders) as a normal entity. In this case you will not use Arraycollections (at least not in entities) and do the searches using only the…