DJ메탈짱™의 Free Style

[Jquery] font-size, font-weight #css() #function 본문

일(job)/FRONT

[Jquery] font-size, font-weight #css() #function

뽀&쏭 2016. 1. 21. 13:05

/*************************************************************************

    : 해당오브젝트의 font size/weight 설정

 작성자 : bhChoi

 작성일 : 2012/02/06

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

 $.FontSet($("#btncamst_prev"));

 **************************************************************************/

  $.FontSet = function(obj){

    var currentFontSize = obj.css('font-size');

    var currentFontSizeNum = parseFloat(currentFontSize, 10);

    var newFontSize = currentFontSizeNum * 1.2;

    obj.css('font-size', newFontSize);  // size

    obj.css('font-weight'"bold");     // weight

};