how to change an image to another image when hover - image

How can i change an image to another image when hover?
I have image and i have to change the image to another image when mouseover. How can i do that?
Presently, I have image 1 and i have to change the image 1 to image 2 when mouseover on image 1.
And i don't know how to do that. I know how to change colors with hover but i don't know how to change it to another image.
<div style="position:absolute; top:1050px; left:360px;"><img src="image1.jpg"><div>

FIDDLE
http://jsfiddle.net/rpku6d89/3/
<div class="hello">
</div>
css
.hello{
background-image: url("http://farm5.static.flickr.com/4005/4706825697_c0367e6dee_b.jpg");
height:300px;
width:400px;
}
.hello:hover{
background-image: url("http://farm5.static.flickr.com/4017/4717107886_dcc1270a65_b.jpg");
}

<img src="image1.jpg"
onmouseover="this.src='image2.jpg'"
onmouseout="this.src='image1.jpg'">

Related

How to add text to image with FFmpeg and export image?

How to add text to image with FFmpeg and export image?
Please help me! Thanks!
you can add text with extra layer of div over image
look example:
div{
position:absolute;
top:120px;
left:80px;
color:red;
font-weight:bold;
}
<img src="https://www.w3schools.com/w3images/fjords.jpg" width="50%"/>
<div>Hello World</div>

How to change image's color using only CSS3 (image has shades of Grey)?

I will be grateful if you can help me to change image's color using only CSS3 (image has shades of Grey).
using some properties of CSS3 like filter ... thank you in advance!
You can achieve this by overlaying a pseudo-element on top of the image and using the mix-blend-mode property (check browser support). For the example below, I've used overlay.
*{box-sizing:border-box;margin:0;padding:0;}
figure{
display:inline-block;
position:relative;
}
img{
vertical-align:middle;
}
figure::after{
background:#f00;
bottom:0;
content:"";
left:0;
mix-blend-mode:overlay;
opacity:.75;
pointer-events:none;
position:absolute;
right:0;
top:0;
}
<figure>
<img alt="" height="250" src="https://unsplash.it/500/250?image=1082&gravity=south" width="500">
</figure>
You can user filter css3,
.filter-me {
filter: <filter-function> [<filter-function>]* | none
}
Where is one of:
blur()
brightness()
contrast()
drop-shadow()
grayscale()
hue-rotate()
invert()
opacity()
saturate()
sepia()
url() - for applying SVG filters
custom() - "coming soon"
as far as i know you can't turn an original grey image into a colored one. closest thing to that is using sepia but that won't work as you want.
the idea is to use at first a colored image , make it gray with grayscale(100%) or saturate(0%) and then ( maybe on an event eg:hover,click,focus etc ) color it again with one of the filter properties
see example below
img {
filter:grayscale(100%);
height:200px;
width:auto;
}
img:hover {
filter:hue-rotate(100deg);
}
<img src="https://placeimg.com/640/480/animals">
let me know if it helps

How to blur the background of each image item in light gallery? (Specific)

I use Light Gallery (http://sachinchoolur.github.io/lightGallery) for my website and want to make some customization on it.
I want to blur the background image of each and every image items that open in the gallery by using those images in their background-image (in CSS).
Well, Light gallery use much more Java Script references from html tag attributes to view values in the gallery which it’s a little complicated for one like who doesn’t predominate on JS.
The structure of gallery items looks like this:
<ul id="lightgallery">
<li>
<a href="">
<img src="">
</a>
</li>
</ul>
If I blur background-image of (li) tag in CSS, it effects the thumbnails (not gallery thumbnail).
I found the main gallery container class (.lg-backdrop) which can blur the background of my light gallery, but it’s a “class” and the effects applies to all items which is defined by this class.
and its my CSS:
.lg-backdrop:before {
content: "";
position: fixed;
left: 0;
right: 0;
z-index: -1;
display: block;
background-image: url(contents/images/canada/canada_exh_1.jpg);
width:100%;
height:100%;
-webkit-filter: blur(50px);
-moz-filter: blur(50px);
-o-filter: blur(50px);
-ms-filter: blur(50px);
filter: blur(50px);
}
Here is I am asking if there is a way to blur the background of each image item by their own image?
The CSS filter property provides access to effects like blur or color shifting on an element’s rendering before the element is displayed. Filters are commonly used to adjust the rendering of an image, a background, or a border.
The Syntax is :
.filter-me {
filter: <filter-function> [<filter-function>]* | none
}

Add text along with image HTML

Hi i have a div like below
<div id="iconArrow"><img src="footer.jpg" width="35" height="27" style="position:fixed;"></div>
i need to add a text "more" on right side of image. please help me check the example image for final output.
after adding codes
It could have something to do with HTML5.
HTML5
<figure>
<img src="footer.jpg" width="35" height="27">
<figcaption>More</figcaption>
</figure>
CSS
figure {
position: fixed;
}
figure > * {
float :left;
}
Here's a jsFiddle
If you want your image to be fixed and you want to add a text beside it I suggest your wrap your image tag in another div with fixed position and do this:
<div id="wrapper" style="position: fixed;width: 35px;height: 27px;">
<img src="footer.jpg" width="35" height="27" /><div style="position: absolute;right: 0">your note</div>
</div>

How to set the image into a desired size

I am using twitter bootstrap.
<img id="profileImage"
data-src="holder.js/300x200" src="${picurls}">
Now the problem is when i upload a image the img area changes to the uploaded image size.
I want a fix image area and every image showld adjust within that box.
There is something wrong in it, please try following block of code
Add line into your img tag.
style="width: 300px; height: 200px;
<ul class="thumbnails">
<li class="span4">
<img id="profileImage" data-src="holder.js/300x200" src="${picurls}">
</li>
...
</ul>
Twitter bootstrap uses the 12 columns grid, so the span4 is telling that the image has 4/12 of the width of the page (or the container it's in).

Resources