动态加载&控制多个内容区域
如果我在这里表现得知识不够,我提前道歉。我是一名正在努力学习的设计师。
因此,我希望真正使我的设计可行,但我研究了各种方法(jquery、AJAX、lightbox),但我不确定使用什么来适合我的设计。链接位于底部,但这是基本问题:
对于投资组合中的每个项目,我都有主图像区域、一些副本和选择区域,其中有图像的简短标题以及您可以选择的更多内容(表示为数字),我想要做的是能够更改图像并在选择区域中更改短标题和数字,以及当您将鼠标悬停在不同数字上时显示它们,而无需重新加载页面。 (我很抱歉,我让这个听起来过于复杂,当您查看实际页面时,它会更加电报。)理想情况下,我想找到一种方法,可以在更改时允许图像进行微妙/短暂的淡出和淡入,而不是一个尖锐、粗鲁的开关,但这是锦上添花。
如果有人有任何想法可以指出我正确的方向,我将不胜感激!非常感谢您的帮助!
I apologize in advance if I come off as less than knowledgeable here. I'm a designer trying to learn.
So I'm looking to actually make my design workable, but I've looked at various methods (jquery, AJAX, lightbox) but I'm not sure what to use to fit my design. The link is at the bottom, but here's the basic problem:
For each item in the portfolio, I have the main image area, some copy, and the selection area which has a short title for the image and more you can select (represented as numbers) and what I want to do is to both be able to change the image and have the short title and number change in the selection area, as well as have them display when you're hovering over the different numbers, without reloading the page. (I apologize I've made this sound overly complicated, it's a lot more telegraphic when you view the actual page.) Ideally I'd like to find a method that allows a subtle/short fade out and in of the image when you change, rather than a sharp, brusque switch, but that's icing on the cake.
If anyone has any ideas of where to point me in the right direction, I would appreciate it greatly! Thank you so much for your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,这可以使用 Ajax 来完成。事实上,使用 Jquery 相当容易。
我建议您将不同的“部分”分解为页面。
我的意思是,例如,您将有一个 print.html 页面,仅包含打印页面的标记,对于网页和运动页面也相同。 (只有标记 =“主图像区域、一些副本和具有图像短标题的选择区域”,没有
、
或
标记,因为我们实际上正在为您的页面创建“段”,
除了您当前的 div id content3 和 content4 之外,主页容器的标记几乎相同。空的(因为这是我们插入页面的位置。事实上,您甚至可以将这 2 个 div 外包到您的页面段,并将它们替换为
(更好,因为你可以更好地控制你的段中的项目的放置)。
可以查找或询问。
从这里开始,我假设你对jquery有一定的了解,所以如果你不明白什么,你 有每个链接(web/print/motion)有一个“load_segment”类和一个 web/print/motion id,为了方便起见,我将 id 命名为与上面讨论的页面段相同的名称(没有 .html 扩展名)。当然)使一些工作自动化。
因此,完成此操作后,包含 jquery 脚本并执行类似以下操作
请注意,对于每个部分中的编号链接,您还可以在段中创建嵌入式 ajax 获取器,例如上面的内容(无需在每个部分中再次包含 jquery段)并为每个页面创建...以及“子段”,但从长远来看,如果页面要增长,这可能会变得有点复杂。
Well, This can be done using Ajax. fairly easy using Jquery in fact.
What i would advise you is have the different "sections" broken down into pages.
what i mean is, for example you would have a print.html page containing only the markup for the print page, same for the web page and same for the motion page. (only the markup = "the main image area, some copy, and the selection area which has a short title for the image", no
<html>
,<head>
or<body>
tags since we are in fact creating "segments" for your page.The main page container's markup would be almost the same except that your current divs with id content3 and content4 would be empty (since that's where we would insert your page. In fact you can even outsource those 2 divs to your page segments and replace them by a
<div id='dynamic'></div>
(better since you have better control on the placement of items in your segments then).From here on i'll assume you have some knowledge of jquery, so if you don't understand something you can look it up or ask.
you can have each of the links (web / print / motion) have a class of "load_segment" and an id of web / print / motion. for the sake of convenience i'd name the ids the same as the page segments i discussed above (without the .html extension of course) to automate some of the work.
so after this is done, include the jquery script and do something like the following
Please note that for the numbered links in each section you could also create embedded ajax fetchers such as in the above within your segments (no need to include jquery again in each segment) and create... well "subsegments" to each page, but that risks getting a bit complex in the long run if the page is to grow.