Posts by William Lima • 295 points
8 posts
-
0
votes0
answers123
viewsQ: Interfaith between CSS3 Transition and Jquery
I’m programming a one-page hash-browsing website using the tools available for CSS3 animation combining Transition and Transform. Using Less the code of the mixins looks something like this:…
-
0
votes2
answers119
viewsA: The same transition does not work on different elements
If the error is only in firefox, the -Moz prefix-: -webkit-transition: opacity 0.35s, background-color 0.35s; -o-transition: opacity 0.35s, background-color 0.35s; -moz-transition: opacity 0.35s,…
-
3
votes1
answer611
viewsA: Using Phpmailer for sending email with attachment but without using User and Password
Substitute: $mail->IsSMTP(); $mail->Host = ''; $mail->SMTPAuth = true; $mail->SMTPSecure = 'ssl'; $mail->Port = 465; $mail->Username = '[email protected]';…
-
0
votes0
answers38
viewsQ: Alternative to CSS3 Shapes compatible
I’m having trouble putting together a part of the layout of a project I’m working on at the moment. The text should be contained within a Poligono. For better visualization of what I am trying to…
-
1
votes1
answer387
viewsQ: Internet Explorer blocks javascript
I programmed a website and would like it to work in all browsers. But in IE, in all versions, it does not work as desired. I noticed that he was blocking my javascript and jquery codes with a…
-
4
votes1
answer184
viewsQ: Animation of div, without CSS3 for future position
I have a so-called product gallery, with Ivs lined up using {display: block; float: left;} I made some Divs disappear depending on the menu selected using fadeOut() and reappear with fadeIn(). I…
-
5
votes2
answers1679
viewsQ: Search System - Select within another
Hi, I’m running a search engine, but I’m kind of a layman when it comes to querys. The method I thought to refine the search, which in this case would be a simple search between two fields of a…
-
5
votes2
answers2231
viewsQ: Show image and upload an input
Hi, I would like to know how to get the path of an image contained in the value of a file type input. I am using the following code: $(document).on("change",'#Upload',function(){ var…