當使用多個列表和懸停狀態時,「父」Cufon樣式將替換該子項。在以下示例中,當您懸停第二級鏈接時,它將被替換爲不同的權重。Cufon嵌套懸停問題
有沒有我可以設置的選項,以便嵌套樣式保持不變或這是Cufon中的錯誤/限制嗎?
<ul>
<li><a href="#">Top Level</a></li>
<li><a href="#">Top Level</a></li>
<li><a href="#">Top Level</a><ul>
<li><a href="#">Second Level</a></li>
<li><a href="#">Second Level</a></li>
<li><a href="#">Second Level</a></li>
</ul>
<li><a href="#">Top Level</a></li>
<li><a href="#">Top Level</a></li>
</ul>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="http://github.com/sorccu/cufon/raw/master/js/cufon.js"></script>
<script type="text/javascript" src="http://github.com/sorccu/cufon/raw/master/fonts/Vegur.font.js"></script>
<script type="text/javascript">
Cufon.replace('ul li a',{hover: true, fontWeight: 200});
Cufon.replace('ul li ul a',{hover: true, fontWeight: 700});
</script>
謝謝親切!你的選擇邏輯fu很強。 至於懸停問題,我只是添加了樣本的fontweight選項,因爲我找不到兩個不同的字體來指向cufon。 – Tom 2009-12-01 13:12:56