我正在使用SmoothState.js在点击时加载新页面。由于在每个页面上,徽标都保持在相同的位置/大小,因此我希望徽标不会刷新,也不会在页面更改时淡出/淡入。
我的菜单中的链接不会刷新,但徽标会刷新。我在文档或谷歌上没有看到任何解决此问题的内容。如何在这些 ajax 页面更改之间始终保持图像到位?
以下是 SmoothState 调用:
$(function() {
$('#main').smoothState();
});
$(function() {
"use strict";
var options = {
prefetch: true,
pageCacheSize: 4,
onStart: {
duration: 300, // Duration of our animation
render: function($container) {
// Add your CSS animation reversing class
$container.addClass("is-exiting");
// Restart your animation
smoothState.restartCSSAnimations();
}
},
onReady: {
duration: 0,
render: function($container, $newContent) {
// Remove your CSS animation reversing class
$container.removeClass("is-exiting");
// Inject the new content
$container.html($newContent);
}
},
},
smoothState = $("#main").smoothState(options).data("smoothState");
});
该 HTML:
<header class="header">
<div class="main-logo">
<a class="svg" href="www.site.com">
<object class="willItBlend" data="../svg/main-logo.svg" type="image/svg+xml"></object>
<img class="blender" src="../svg/main-logo.png" />
</a>
</div>
<nav class="main-nav-about">
// links go here
</nav>
</header>
SmoothState 的可用事件调用:
onBefore - Runs before a page load has been started
onStart - Runs once a page load has been activated
onProgress - Runs if the page request is still pending and the onStart animations have finished
onReady - Run once the requested content is ready to be injected into the page and the previous animations have finished
onAfter - Runs after the new content has been injected into the page and all animations are complete
您需要使用文档中指定的"黑名单"选项:
一个 jQuery 选择器,指定应忽略 smoothState 元素中的哪些元素。这包括表单元素和锚元素。
只需将其添加到选项对象blacklist: '.no-smoothState'
然后将 .no-smoothState
类添加到要忽略的任何页面元素。
黑名单在这种情况下不起作用。我为保持菜单不变并仅替换所需内容所做的工作在解决方案下面介绍。
HTML(index.html,about.html和work.html遵循该模式):
<body>
<div id="main">
<div class="menu">
<a href="index.html">index</a>
<a href="work.html">work</a>
<a href="about.html">about</a>
</div>
<div id="content">
<h1>INDEX</h1>
</div>
</div>
</body>
JS:
$(function() {
$('#main').smoothState({
'onReady': {
'render': function($container, $newContent) {
// replace only content div and leave the menu alone
$container.find('#content').html($newContent.filter('#content'));
}
}
});
});
请注意,我还没有测试其他一切是否仍然有效,但似乎一切都很好。我是插件本身的新手,并考虑将其用于我的下一个项目。该解决方案是经过一些测试和实验的结果。