我正在使用超大型jQuery滑块插件,它会在点击NAV锚点时更改一个
超大jQuery插件:::::::::>
<script type="text/javascript">
jQuery(function($){
$.supersized({
// Functionality
slide_interval : 8000, // Length between transitions
transition : 1, // 0-None, 1-Fade, 2-Slide Top, 3-Slide Right, 4-Slide Bottom, 5-Slide Left, 6-Carousel Right, 7-Carousel Left
transition_speed : 1300, // Speed of transition
// Components
slide_links : 'blank', // Individual links for each slide (Options: false, 'num', 'name', 'blank')
slides : [ // Slideshow Images
{image : './lib/images/photos/image1.jpg'},
{image : './lib/images/photos/image2.jpg'},
{image : './lib/images/photos/image3.jpg'},
{image : './lib/images/photos/image4.jpg'}
],
bullet: "bullet",
bullet_active: "active",
bullet_main: "bullet-main",
bullet_main_active: "active",
bullet_main_second: "bullet-main-second1",
bullet_main_second_active: "active2"
});
});
</script>
bullet_main_second_active:“active2”是ACTIVE ANCHOR。
现在问题是CUFON在转换后没有工作..有一个错误......它不是前一个锚点。悬停在上一个锚点后,它将颜色更改为默认值... 滑块插件在默认字体系列上正常工作....它的cufon bug
<script type="text/javascript">
Cufon('.block-right a h1');
Cufon.replace('#nav li a');
Cufon.replace('#rightcaption a', {
hover: {
color: '#f04037'
}
});
Cufon.replace('ul.tabNavigation li a', {
hover: {
color: '#FFF'
}
});
</script>
CSS :::::::::::::&GT;
#rightcaption {
float:right;
padding-top:25%;
font-size:14px;
color:#b5b5b5;
margin-right:40px;}
#rightcaption a {
background:url(../images/bullet1.png) no-repeat right 8px;
height:8px;
color:#b5b5b5;
font-size:14px;
margin:0 0 5px 0;
padding:4px 40px 13px 13px;
display:block;
text-align:right;}
a.active2 {
background:url(../images/bullet2.png) no-repeat right 8px #FFF !important;
margin:0 20px 5px 0;
color:#f04037;
font-size:14px;
padding:4px 40px 13px 13px !important;
display:block;}
IMG :::::::::::::::::&GT; http://i.stack.imgur.com/lyjvw.png
答案 0 :(得分:1)
如果我真的理解你的问题那么我会说cuffon有一个方法必须被使用/调用才能在任何元素被更改后生效(在任何转换之后)并且我认为你错过了,所以你可以在转换完成后调用
Cufon.refresh(); //Refresh elements that are using coffon font to apply new style
我认为,不知何故,你必须在每次转换后调用一个回调函数。以下是关于SO about cuffon的答案,这是SO about supersized的答案(由插件的作者回答),这些可能会有所帮助。