我已经尝试了几个小时来弄清楚为什么这不起作用......我不明白,它一点也不复杂,我已经把它完全剥离了。为什么它不起作用?
我正在尝试将 h1 文本转换为渐变文本...
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>TITLE</title>
<!-- StyleSheet -->
<link id="stylesheet" type="text/css" href="css/style.css" rel="stylesheet" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="js/cufon-yui.js"></script>
<script type="text/javascript">
Cufon.replace('h1', {
color: '-linear-gradient(#999, 0.45=#666, 0.45=#555, #999)'
});
</script>
</head>
<body>
<h1>Lorem ipsum dolor seiti alpo...</h1>
<script type="text/javascript"> Cufon.now(); </script>
</body>
</html>
</p>
但我得到的只是纯黑色文本......