我是新手,我在论坛上搜索过类似的东西......但我没有找到任何可以帮助我编码的建议。
我正在尝试将 Nivo Slider 实施到我的网站中。但它给了我错误或什么都不做。
我的网站基于 CMS 程序,所以我必须以管理员身份登录才能编辑页面。
任何建议将不胜感激..
这是我在链接到网站的 php 文件上所做的。:
<?php defined('C5_EXECUTE') or die("Access Denied."); ?>
<!DOCTYPE html>
<html lang="<?php echo LANGUAGE?>">
<head>
<?php Loader::element('header_required'); ?>
<!-- Site Header Content //-->
<link rel="stylesheet" href="<?php echo $this->getThemePath()?>/css/nivo-slider.css" type="text/css" />
<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getStyleSheet('main.css')?>" />
<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getStyleSheet('typography.css')?>" />
<!-- Print Area Style //-->
<link rel="stylesheet" type="text/css" media="print" href="<?php echo $this->getStyleSheet('printer.css')?>" />
<style type="text/css">
UL#ariext89 LI A{font-size:15px;font-weight:bold;text-transform:none;text-align:left;}
</style>
</script>
</head>
<body>
<!--start main container -->
<div id="main" class="asd">
<div id="header">
<?php if ($c->isEditMode()) { ?>
<div style="min-height: 80px">
<?php } ?>
<h1 id="logo">
<a title="asd" href="testing.php">
<img height="131" width="384" alt="" src="xx.jpg" title="asd">
</a>
</h1>
</div>
在 HTML 方面.. 它看起来像这样:
<div id="faded">
<div id="slider" class="nivoSliders"><img src="img0.png" alt="" /> <a href="http://dev7studios.com"><img title="#htmlcaption" src="img1.png" alt="" /></a> <img title="This is an example of a caption" src="img2.png" alt="" /> <img src="img3.png" alt="" /></div>
<div id="htmlcaption" class="nivo-html-caption"><strong>This</strong> is an example of a <em>HTML</em> caption with <a href="#">a link</a>.</div>
</div>
我已经尝试将 javascript srcs 放到网站的 php 和 html 端,但是该网站不会为 php 加载,并且当我仍然以 html 端的管理员身份登录时,我的管理控件被删除。我认为这可能是 jQuery 冲突,并且也尝试了 jQuery.noConflict() 函数......
谢谢!