-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage-hover.php
36 lines (33 loc) · 950 Bytes
/
image-hover.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php include "header.php"?>
<style>
.box-imgg #library{
height: 70px;
width: 120px;
}
.box-imgg #library2{
height: 70px;
width: 120px;
}
/* .box-imgg img:hover{
background-image: url('images/chat-images/2nd.png');
height: 70px;
width: 120px;
} */
</style>
<div class="container">
<div class="row mt-5 mb-5">
<div class="col-md-3 mt-5 box-imgg">
<img src="images/chat-images/1st.png" alt="" id=" library">
<img src="images/chat-images/2nd.png" alt="" id=" library2" style="display:none;">
<!-- <img src="images/chat-images/2nd.png" alt=""> -->
</div>
</div>
</div>
<?php include "footer.php"?>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script>
$(document).on('hover','#library',function(){
$('#library').hide();
$('#library2').show();
})
</script>