½ÃÀÛÆäÀÌÁö·Î Áñ°Üã±âÃß°¡
·Î±×ÀÎ
ȸ¿ø°¡ÀÔ l Ã⼮üũ l ¸¶ÀÌÆäÀÌÁö l CGIMALL
ÀÚ·á½Ç »çÀÌÆ®µî·Ï ·©Å·100 ÇÁ·Î±×·¥¸®ºä °ü¸®ÀÚÃßõÀÚ·á Ãʺ¸°¡À̵å
Ä¿¹Â´ÏƼ
Àüü ÆîÃ帱â
Äü¸Þ´º¸µÅ© jquery , CSS , PHP , Javascript , ¹«·áÆùÆ® , ASP
»ó¼¼°Ë»ö
Ȩ > Ä¿¹Â´ÏƼ > Áú¹®°ú´äº¯ »ó¼¼º¸±â
Ä¿¹Â´ÏƼ ±¸Àα¸Á÷
»çÀÌÆ®µî·Ï
Ŭ¶ó¿ìµåű×
javascript
php
html
asp
mysql
CSS
mobile
jquery
image
slide
�޴�
¸Þ´º
������Ʈ
ÇöÀçÁ¢¼ÓÀÚ ¸í »õ·Î°íħ
°Ô½ÃÆÇŸÀÌƲ Áú¹®°ú´äº¯ / »ó¼¼º¸±â
Æ®À§ÅÍ·Î º¸³»±â
Ãßõ¼ö 350 | Á¶È¸¼ö 3,905 | µî·ÏÀÏ 2013-03-18 16:29:18

´Ð³×ÀÓ

dhdmlal

À̸ÞÀÏ

dhdmlal@nate.com

Á¦¸ñ

alt ³»¿ë À§Ä¡º¯°æ ¹®Á¦
³»¿ë

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>

 

 

 

Ãßõ½ºÅ©·¦¼Ò½ºº¸±â ¸ñ·Ï
ÀÌÀü°Ô½Ã±Û sms¿Í ¸ÞÀÏÀ» ¿¬°áÇØ ÁÖ¼¼¿ä 2013-03-10 14:55:34
´ÙÀ½°Ô½Ã±Û ÆäÀÌÁö¸¶´Ù ¿­¸®´Â º¹ÁÖ¸Ó´Ï À̺¥Æ® 2013-03-29 14:11:40