I have this input[type="text"]
on my page on which I've been working on for some time. What I wanna do is to create an effect of it expanding, when the user clicks in it. Also, I want it to return to its normal width when the mouse goes out.
My code so far:
$(document).ready(function() {
$("input").click(function() {
var i;
for (i = 250; i < 501; i++) {
$(this).css("width", (i.toString + "px"))
}
})
})
input[type="text"] {
background-color: #000;
color: #fff;
border-radius: 10px;
border-style: none;
height: 50px;
width: 250px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="text">
I've used the .click()
jQuery function here. Are there any other functions which can detect a cursor in an element? Something like .cursorIn()
, if it exists.
You can use
transition: width ease 1s
(and use the:hover
psuedo element if you want)See demo below:
With pure CSS you can use the
focus
psuedo element like this: