2013-03-25 3 views

답변

2

cufon js 파일을로드하지 않습니다.

여기 Cufon을 사용하는 방법은 다음과 같습니다

https://github.com/sorccu/cufon/wiki/Usage

<!doctype html> 
<html> 
    <head> 
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
     <title>Playing with Cufón</title> 
     <!-- Stylesheets here, before all scripts. Helps avoid styling issues. --> 
     <link rel="stylesheet" type="text/css" href="style.css" /> 
     <!-- 
     If you want to use complex selectors with Cufón, load a selector engine (JavaScript framework) here. 
     We support jQuery, Sizzle, MooTools, Dojo, Prototype and other popular frameworks. 
     --> 
     <script src="cufon-yui.js" type="text/javascript"></script> 
     <script src="YourFont.font.js" type="text/javascript"></script> 
     <script type="text/javascript"> 
      Cufon.replace('h1'); // Works without a selector engine 
      Cufon.replace('#sub1'); // Requires a selector engine for IE 6-7, see above 
     </script> 
    </head> 
    <body> 
     <h1>Your custom font here</h1> 
     <h2 id="sub1">Your custom font here too</h2> 
     <!-- To avoid delays, initialize Cufón before other scripts at the bottom --> 
     <script type="text/javascript"> Cufon.now(); </script> 
     <!-- Google Analytics and other scripts here --> 
    </body> 
</html> 
+0

고마워요! 나는 완전히 그것을 간과했다. –

+0

아무 걱정도, 도움이되기 때문에 기쁘다. –