How to take place for image replacement in angularjs

I have a search input box and currently when it is not selected it shows Search here

, but instead of text I have an image?

enter image description here

code

<input id="autoComplete" type="text" ng-model="selected" typeahead="task.name for task in taskList | filter:$viewValue | limitTo:20" class="form-control" typeahead-on-select='onSelect($item, $model, $label)' placeholder="Search here" typeahead-focus-first="true" ng-disabled="loading" ng-blur="autocompleteBlurred()" />

      

Here is a plunker link you can check out.

+3


source to share


1 answer


You can do it directly using css

input#autoComplete {
    background-image: url(https://cdn1.iconfinder.com/data/icons/hawcons/32/698627-icon-111-search-16.png);
    background-position: 10px center;
    background-repeat: no-repeat;
    border: 1px solid #ccc;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    padding: 10px 5px;
    text-indent: 20px;
    -webkit-transition: all 0.2s;
    -moz-transition: all 2s;
    transition: all 0.2s;
}
input#autoComplete:focus {
    background-position: -20px center;
    text-indent: 0;
}

      



Check out this plunker

If you want the text not to be removed placeholder="Search"

from your input as well

+1


source







All Articles