是否可以将我的博文添加到 JCarousel 而不是 html 代码?它应该如下所示:
=>示例
在这个网站上的内容只是 html,但我希望我的博文能够炫耀。
假设我写了 5 篇博文,那么滑块必须向我显示 5 篇博文。
希望有人可以帮助我!
问候
尼科
是否可以将我的博文添加到 JCarousel 而不是 html 代码?它应该如下所示:
=>示例
在这个网站上的内容只是 html,但我希望我的博文能够炫耀。
假设我写了 5 篇博文,那么滑块必须向我显示 5 篇博文。
希望有人可以帮助我!
问候
尼科
您需要创建一个宏(xslt 或 razor)来显示您的博客文章节点,然后使用 jquery 定位它们以加载 jcarousel。以下是使用您引用的示例中的代码执行此操作的剃刀脚本示例:
@using umbraco.MacroEngines
@inherits DynamicNodeContext
@try
{
<script type="text/javascript" src="http://www.fdp-bw.de/jcarousel/lib/jquery-1.2.3.pack.js"></script>
<script type="text/javascript" src="http://www.fdp-bw.de/jcarousel/lib/jquery.jcarousel.pack.js"></script>
<link rel="stylesheet" type="text/css" href="http://www.fdp-bw.de/jcarousel/lib/jquery.jcarousel.css" />
<link rel="stylesheet" type="text/css" href="http://www.fdp-bw.de/jcarousel/skins/tango/skin.css" />
<style type="text/css">
/**
* Additional styles for the controls.
*/
.jcarousel-control {
margin-bottom: 10px;
text-align: center;
}
.jcarousel-control a {
font-size: 75%;
text-decoration: none;
padding: 0 5px;
margin: 0 0 5px 0;
border: 1px solid #fff;
color: #eee;
background-color: #4088b8;
font-weight: bold;
}
.jcarousel-control a:focus,
.jcarousel-control a:active {
outline: none;
}
.jcarousel-scroll {
margin-top: 10px;
text-align: center;
}
.jcarousel-scroll form {
margin: 0;
padding: 0;
}
.jcarousel-scroll select {
font-size: 75%;
}
#mycarousel-next,
#mycarousel-prev {
cursor: pointer;
margin-bottom: -10px;
text-decoration: underline;
font-size: 11px;
}
</style>
<script type="text/javascript">
/**
* We use the initCallback callback
* to assign functionality to the controls
*/
function mycarousel_initCallback(carousel) {
jQuery('.jcarousel-control a').bind('click', function () {
carousel.scroll(jQuery.jcarousel.intval(jQuery(this).text()));
return false;
});
jQuery('.jcarousel-scroll select').bind('change', function () {
carousel.options.scroll = jQuery.jcarousel.intval(this.options[this.selectedIndex].value);
return false;
});
jQuery('#mycarousel-next').bind('click', function () {
carousel.next();
return false;
});
jQuery('#mycarousel-prev').bind('click', function () {
carousel.prev();
return false;
});
};
// Ride the carousel...
jQuery(document).ready(function () {
jQuery("#mycarousel").jcarousel({
scroll: 1,
visible: 1,
auto: 10,
wrap: "last",
initCallback: mycarousel_initCallback,
// This tells jCarousel NOT to autobuild prev/next buttons
buttonNextHTML: null,
buttonPrevHTML: null
});
});
</script>
<div id="mycarousel" class="jcarousel-skin-tango">
<ul>
@foreach (var post in Model.AncestorOrSelf().Descendants("umbBlogPost"))
{
<li>
<h2>@post.Name</h2>
<div>@post.bodyText</div>
</li>
}
</ul>
<div class="jcarousel-control">
@for (int i = 0; i < Model.AncestorOrSelf().Descendants("umbBlogPost").Count(); i++)
{
<a href="#">@(i + 1)</a>
}
</div>
</div>
}
catch (Exception e)
{
<!-- @e.ToString() -->
}
这会给你所有的帖子。您可能想要进行一些排序和过滤,然后获得前五名或其他:
var posts = Model.AncestorOrSelf().Descendants("umbBlogPost").OrderBy("PostDate desc").Take(5);