Drupal 照片库教程
有人可以给我指点一本好的 Drupal 照片库教程或书籍吗?我正在尝试在网格视图中创建照片库。但是,我不希望标题等与照片一起显示。另外,我想在照片周围添加边框,使它们更加突出。
我不太精通 PHP,所以我希望解决方案能够完全通过模块和尽可能少的编码来处理。
Can someone point me to a good Drupal Photo Gallery tutorial or book. I am trying to create a photo gallery in a grid view. However, I do not want the titles, etc. to be displayed with the photos. Also, I want to place a border around the photos to make them stand out a bit.
I am not that well versed in PHP so I want the solution to be handled completely with modules and as little coding as possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这是一个将图库的 Views/CCK/Imagefield 配置组合在一起的模块: http://drupal.org/project /views_gallery
这种方法的优点在于,您最终会得到一个基于 cck/views 的图库,并且可以轻松地将其调整为您想要的任何内容(例如不想显示标题、在灯箱中弹出图像)标题等)并轻松地在其他地方重复使用图像显示。
Here's a module that puts together the Views/CCK/Imagefield configuration for a gallery: http://drupal.org/project/views_gallery
What's great about this approach is that you then end up with a cck/views-based gallery and can easily tweak it to anything you want (like not wanting to display titles, having images pop up in a lightbox with a caption, etc.) and reuse the display of images elsewhere easily.
您可以使用 Drupal 模块(例如 cck、views、imagefield 和 imagecache)构建自己的照片库。只需搜索 Google 或 Drupal.org,那里就有很多操作方法。
这是最近的教程视频:http://learnbythedrop.com/drop/148
You can build your own photo gallery using Drupal modules like cck, views, imagefield and imagecache. Just search Google or Drupal.org, there are plenty of how-to's out there.
Here is a recent tutorial video: http://learnbythedrop.com/drop/148
如果您有兴趣学习如何使用 Drupal(很少/不需要 php 编码),您应该看看 由 Lullabot 团队使用 Drupal。它涵盖了很多不同的案例,其中之一是如何构建像您所描述的那样的图像库。
If you are interested in learning how to use Drupal, with little/no php coding, you should take a look at Using Drupal by the Lullabot team. It covers a lot of different cases, one of them is how you can build an image gallery like you describe.
当我第一次做同样的事情时,这是一个真正帮助我的教程:http://www.primalmedia.com/blog/building-better-drupal-photo-gallery
Here's a tutorial that really helped me when I was doing the same thing for the first time: http://www.primalmedia.com/blog/building-better-drupal-photo-gallery