我对SharePoint很陌生,我正在尝试做一些标准HTML,但由于某些原因在SP中不起作用。
我有一系列使用向导创建的页面,我希望倒数第二页显示进度微调器(gears_an.gif)。
但是,当显示此页面时,gif不会设置动画。
有没有办法让标准的,工作的gif在SP页面上以标准方式工作?
(我在页面的其他地方使用jQuery,以防可能用于构成解决方案的一部分。)
如果您需要更多信息,请与我们联系。
jQuery和HTML如下:
if ($('input[name$="nextButton"]').val() == "Proceed") {
$('.pageTable').hide();
$('.buttonBlock').hide();
$('#processingPage').show();
$('#progressSpinner').show();
<img id="progressSpinner" enableviewstate="true" src="/_layouts/images/gears_an.gif" width="100" height="100" alt="This is the spinner..." />
<asp:Image ImageUrl="~/_layouts/images/gears_an.gif" AlternateText="This is from an asp:label..." Height="100" AlternateText="with a tilde" />
<asp:Image ImageUrl="/_layouts/images/gears_an.gif" AlternateText="This is from an asp:label..." Height="100" AlternateText="without a tilde" />
非常感谢
答案 0 :(得分:0)
它没有直接回答这个问题,但您是否考虑过使用SPLongOperation课程?
专门针对这种情况,并提供旋转齿轮类型页面。
Keith Dahlby已发布method of customising this page。它并不全面,但可能足以满足您的要求。实际上,您可以将HTML,CSS,javaScript注入前导和尾随HTML元素,并使用它们来重新设置页面。
答案 1 :(得分:0)
过去我发现ASP.Net UpdatePanel控件会干扰动画GIF。您的网页上是否有任何UpdatePanel?