Guest User

Untitled

a guest
Jun 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. di headnya sy include file custom.js yg isinya :
  2.  
  3. $(document).ready(function(){
  4. $(".anim").mouseover(function(){
  5. $("#img").animate({
  6. marginTop: "-100px"
  7. }, 500);
  8. });
  9. $(".anim").mouseout(function(){
  10. $("#img").animate({
  11. marginTop: "0px"
  12. }, 500);
  13. });
  14. });
  15.  
  16. <div id="news">
  17. <a href="#" class="icon-news anim" title="News"><img class="anim" src="<?php print base_path() . drupal_get_path('theme', 'klikit'); ?>/images/items/news.png" alt="Read Our Recent News" /><a/>
  18. </div>
Add Comment
Please, Sign In to add comment