modified.
This commit is contained in:
parent
03b9323005
commit
7c5f6137e1
1 changed files with 13 additions and 12 deletions
|
@ -104,6 +104,19 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<script>
|
||||
jQuery(function() { // <== Doc ready
|
||||
|
||||
jQuery(".avatar1_file").hide(); // Initially hide all buttons
|
||||
|
||||
jQuery('.show-image').hover(function() {
|
||||
jQuery(this).find('#avatar1_file').fadeIn(1500);
|
||||
}, function() {
|
||||
jQuery(this).find('#avatar1_file').fadeOut(1500);
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
|
||||
|
@ -138,16 +151,4 @@
|
|||
});
|
||||
|
||||
});
|
||||
|
||||
|
||||
jQuery(function() { // <== Doc ready
|
||||
|
||||
jQuery(".avatar1_file").hide(); // Initially hide all buttons
|
||||
|
||||
jQuery('.show-image').hover(function() {
|
||||
jQuery(this).find('#avatar1_file').fadeIn(1500);
|
||||
}, function() {
|
||||
jQuery(this).find('#avatar1_file').fadeOut(1500);
|
||||
});
|
||||
});
|
||||
</script>
|
Loading…
Add table
Reference in a new issue