¾ÆÀ̵ð ºñ¹Ð¹øÈ£ | ȸ¿ø°¡ÀÔ | ºñ¹Ð¹øÈ£ºÐ½Ç
   
¡¡»õ·Î¿î¼Ò½Ä
¡¡FAQ
¡¡À¥ÇÁ·Î±×·¥
¡¡À¥DB
¡¡À¥¼­¹ö
¡¡À¥ÇÁ·Î±×·¥¼öÁ¤
¡¡ÇØÇÇÄ®·³
¡¡°ñµåÆÁ
 
Á¦ÀÛÀÇ·Ú
À¥ÇÁ·Î±×·¥ ÆǸŸô
 
ÇöÀçÀ§Ä¡: ¸ÞÀÎ ÇØÇÇÆ÷·³ À¥ÇÁ·Î±×·¥ : °Ô½Ã¹° ÆîÃÄÀбâ
Total related article : 1  
µî·ÏÀÏ:2013-03-18
½Ã°£:16:29:18
Á¶È¸¼ö:3645
from:110.12.36.14
alt ³»¿ë À§Ä¡º¯°æ ¹®Á¦ ±Û¾´ÀÌ : dhdmlal

http://www.happycgi.com/detail.cgi?number=14429&p=2#1

¿©±â¿¡ ¿Ã¶ó¿Í ÀÖ´Â ¹öºí¸Þ´º¸¦ »ç¿ëÇÏ·Á°í ÇÕ´Ï´Ù.

±Ùµ¥ alt¿¡ ÀûÇôÀÖ´Â ³»¿ëÀÌ À̹ÌÁö À§ÂÊÀ¸·Î ¶ß´Âµ¥¿ä

ÀÌ°É À̹ÌÁö ¾Æ·¡¿¡ ¶ß°Ô ÇÏ°í½Í½À´Ï´Ù..

 

¾î¶»°Ô ¼Ò½º¸¦ ¼öÁ¤ÇØ¾ß ÇÏ´ÂÁö °¨ÀÌ ÀâÈ÷Áö ¾Ê³×¿ä..¤Ð¤Ð

µµ¿òºÎŹµå¸³´Ï´Ù..

 

 

 

-------------------

.jsÆÄÀϳ»¿ë

 

(function($){
 $.fn.bubbleup = function(options) {
  
  //Extend the default options of plugin
  var opts = $.extend({}, $.fn.bubbleup.defaults, options);
        var tip = null;


     return this.each(function() {  
     
      //Set the option value passed here
            var $tooltip = opts.tooltips;

 

     $(this).mouseover(
    
       function () {
              
              if($tooltip) {
              
                  tip = $('<div>' + $(this).attr('alt') + '</div>');
                  tip.css({
       fontFamily: 'Helvetica, Arial, sans-serif',
                   color: '#333333',
                   fontSize: 12,
                   fontWeight: 'bold',
                   position: 'absolute',
                   zIndex: 100000

                  });
               
               tip.remove().css({
                top: 0, left: 0,
                visibility: 'hidden',
                display: 'block'
               }).appendTo(document.body);
           
           
               //Get the width and height of current image item
               var position = $.extend({}, $(this).offset(), {
                width: this.offsetWidth,
                height: this.offsetHeight
               });
               
               
               //Get the width and height of the tip element
               var tipWidth = tip[0].offsetWidth, tipHeight = tip[0].offsetHeight;
               
               
               
                  //Set position for the tip to display correctly
         //Postion: top and center of image    
               tip.stop().css({
                top: position.top - tipHeight,
                left: position.left + position.width / 2 - tipWidth / 2,
                visibility: 'visible'
               });
               
               tip.animate({
             top: "-=24",
            }, 'fast');
           }        
       
           $(this).stop();
           $(this).css({'z-index' : 100, 'top' : 0, 'left' : 0, 'width' : 48}).animate({
            left: "-=24",
            top: "-=24",
                  width: 96
           }, 'fast');
           
       }

     ).mouseout(
    
       function () {
     
              if($tooltip) {
                     tip.remove();
                    }   
       
        $(this).stop();
           $(this).animate({
            left: 0,
            top: 0,
                  width: 48
           }, 'fast', function() {
             $(this).css({'z-index' : 0});
            }
           );
       }

     );

     });
     
  };
  
  $.fn.bubbleup.defaults = {
  tooltips: false
 }


})(jQuery);

 

------------------------------

html ÆÄÀϳ»¿ë

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>http://www.blueb.co.kr</title>
<script type="text/javascript" src="js/jquery-1.4.2.min.js"></script><!-- jquery-->
<script type="text/javascript" src="js/bubbleup.jquery.js"></script>
<script type="text/javascript">

$(function(){

    $("ul#menu li img").bubbleup({tooltips: true});
   
});
</script>
<style type="text/css">
<!--
body {
 background-color: #EDEDED;
 font-family: dotum,'µ¸¿ò';
 font-size: 11px;
 letter-spacing:-1px;
 margin: 0px;
 padding: 0px;
}

div#content {
 width: 100%;
 margin: 50px auto 0px auto;
 text-align: center;
}

h3 {
 margin-bottom: 50px;
}

ul#menu {
    margin: 5px 0px;
}
   
ul#menu li {
    padding: 0px;
    display: inline-block;
    *display: inline; /* IE 7 and below */
    position: relative;
    margin-left: 5px;
    margin-right: 5px;
    width: 48px;
    height: 48px;
}

ul#menu li img {
    width: 48px;
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 0px;
    margin: 0 8px 0 0;
    border: none;
}


-->
</style>
</head>
<body>

<div id="content">
  <ul id="menu">
    <li> <a href="http://www.blueb.co.kr"><img src="img/email.png" alt="E-Mail"></a> </li>
    <li> <a href="http://www.blueb.co.kr"><img src="img/twitter.png" alt="Twitter"></a> </li>
    <li> <a href="http://www.blueb.co.kr"><img src="img/facebook.png" alt="FaceBook"></a> </li>
    <li> <a href="http://www.blueb.co.kr"><img src="img/technorati.png" alt="Link"></a> </li>
  </ul>
</div>

</body>
</html>

 

 

 


  

 
¨Ô
Á¦¸ñ
ÀÛ¼ºÀÎ
Á¶È¸
µî·ÏÀÏ
alt ³»¿ë À§Ä¡º¯°æ ¹®Á¦
dhdmlal
3645
2013-03-18 16:29:18
 

  HOME | ȸ»ç¼Ò°³ | Á¦ÀÛÀÇ·Ú | °³ÀÎÁ¤º¸Ãë±Þ¹æħ | CGIMALL | ÀÚ·á½Ç | »çÀÌÆ®µî·Ï | ·©Å·100 | Æ÷·³ | Ãʺ¸°¡À̵å | Áú¹®°ú´äº¯ | ¹è³Ê±¤°í
Copyright¨Ï1997~2008 HappyCGI All rights reserved
Powered By HappyCGI