Posts by Rafael Almeida • 2,585 points
57 posts
-
2
votes1
answer53
viewsA: Reversing the jquery effect
You have two ways of doing what you want: 1st method There is a command in jQuery called toggleClass, You can use it to get what you want by alternating the object class. Imagine a blue div, and you…
jqueryanswered Rafael Almeida 2,585 -
0
votes1
answer515
viewsA: Problem with svg background
I did it! The problem was both in CSS and SVG. I made another image in Photoshop with the size of 1366x768 and converted it to SVG using this online tool, all the same as before (this new image is…
-
2
votes1
answer515
viewsQ: Problem with svg background
I’m studying a little bit about svg And I found the giant shapes on the sites amazing, but I’m having a really hard time reproducing correctly. I created a 693x768 shape that will cut a page, but I…
-
10
votes2
answers397
viewsQ: Is support for users who do not use Javascript running out?
Yes, obviously it’s important, but I see many sites that simply nay work if Javascript is turned off. It’s more for curiosity, but nowadays it’s almost mandatory to use Javascript on a large site,…
-
5
votes1
answer39
viewsQ: A background is loaded even when a rule is not applied over an element?
I do not know if the title of the question is clear, I will try to explain as clearly as possible. I’m studying about responsive websites and try my best not to use large images so the site doesn’t…
cssasked Rafael Almeida 2,585 -
1
votes3
answers3788
viewsA: How to copy a file with PHP?
You can include PHP code inside another using the commands include, require and require_once. The best in your case is include, which can be used like this: include('arquivo.php'); Remember that the…
phpanswered Rafael Almeida 2,585 -
1
votes2
answers1716
viewsQ: Get value from an iframe via Javascript
I have a code that is in an external file and I need to load it via Javascript, but I don’t know how to do this. I have tried several ways, and apparently the best would be with an iframe, but not…