1

このCufonフォントをWebサイトで使用できません。コードに何か問題がありますか?コードのスクリーンショットを添付しました。タグを使用してコードが適切に実装されていない理由がわかりません。

http://i.stack.imgur.com/K1DKS.jpg

私のコードに何か問題がありますか?

4

1 に答える 1

2

cufonjsファイルをロードしていません。

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>
于 2013-03-25T16:00:11.380 に答える