添加替代文本和 MediaWiki 图像库的链接

发布于 2024-10-01 00:26:49 字数 302 浏览 4 评论 0原文

在 MediaWiki 中,我想显示带有替代文本的图像库(工具提示)以及另一个页面的链接。

对于单个图像可以轻松完成此操作。有谁知道如何为图片库执行此操作?

In MediaWiki I want to display a gallery of images with alt text (tool tip) and a link to another page.

This can easily be done for a single image. Does anyone know how to do this for an image gallery?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

雨落□心尘 2024-10-08 00:26:49

感谢维基百科提供的这个很好的答案。如果您使用以下代码,它也可以在没有图像映射扩展的情况下工作:

 {|
 |[[File:yourpic.png|x200px|link=yourlink]]<br />[[your link|your caption]] || 
 [[File:yourpic2.png|x200px|link=yourlink2]]<br />[[your link 2|your second caption]]
 |}

有关演示,请查看 http://www.linuxintro.org

Thank you wikis for this great answer. It also works without the imagemap extension if you use this code:

 {|
 |[[File:yourpic.png|x200px|link=yourlink]]<br />[[your link|your caption]] || 
 [[File:yourpic2.png|x200px|link=yourlink2]]<br />[[your link 2|your second caption]]
 |}

For a demo look at http://www.linuxintro.org

梦开始←不甜 2024-10-08 00:26:49

对于那些感兴趣的人,有一个解决方法。您可以将图像放在表格中。这样您就可以使用链接和工具提示的 ImageMap 功能。您还可以在下面添加一行作为标题(也可以是链接)。

所以,代码是例如:

{| style="font-size:85%; border: 2px solid blue;"
|
<imagemap>
File:<image name>|frameless|x80px|center
default [[<link for image>|<tool tip for image>]]
desc none
</imagemap>
|-
|[[<Caption link>]]
|}

For those interested, there is a workaround. You can put the images in a table. That way you can use the ImageMap functionality for the link and tool tip. You can also add a row below for the caption (which can also be a link).

So, the code is e.g.:

{| style="font-size:85%; border: 2px solid blue;"
|
<imagemap>
File:<image name>|frameless|x80px|center
default [[<link for image>|<tool tip for image>]]
desc none
</imagemap>
|-
|[[<Caption link>]]
|}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文