- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我要修改pikachoose仅显示缩略图。我已经稍微修改了代码,这就是我所拥有的:
这是我在base.css中修改的内容
/* Style the thumbnails */
.pika-thumbs {
padding: 0 16px;
height: 75px;
}
.pika-thumbs li {
width: 144px;
height: 74px;
margin: 10px 0 0 17px;
padding: 0;
overflow: hidden;
float: left;
list-style-type: none;
padding: 3px;
margin: 0 5px;
background: #fafafa;
border: 1px solid #e5e5e5;
cursor: pointer;
}
.pika-thumbs li .clip {
position: relative;
height: 100%;
text-align: center;
vertical-align: middle;
overflow: hidden;
}
/*for the tool tips*/
.pika-tooltip {
font-size: 12px;
position: absolute;
color: white;
padding: 3px;
background-color: rgba(0,0,0,0.7);
border: 3px solid black;
}
.pika-counter {
position: absolute;
bottom: 45px;
left: 15px;
color: white;
background: rgba(0,0,0,0.7);
font-size: 11px;
padding: 3px;
-moz-border-radius: 5px;
border-radius: 5px;
}
/* If using user thumbnails there's a pause while the new large image loads. This is the loader for that */
.pika-loader {
background: url(loading.gif) 3px 3px no-repeat #000;
background-color: rgba(0,0,0,0.9);
color: white;
width: 60px;
font-size: 11px;
padding: 5px 3px;
text-align: right;
position: absolute;
top: 15px;
right: 15px;
}
我必须在jquery.pikachoose.js中修改什么来做到这一点?
我正在处理的网站是 http://brassds.com/
最佳答案
假设您指的是http://brassds.com/servicios.html , Pikachoose 的文档状态:
PikaChoose will create thumbnails for you, but if you want to use your own it’s easy. You set the src for your images to your thumbnail image. Then you’ll add a ref attribute (not rel!) with the full size image like the example below. PikaChoose will pull in the full size image automatically.
<img src="thumbnail.jpg" ref="fullsize.jpg" >
进一步假设 Servicios-pequena1.jpg
指向缩略图,而 Servicos-1.jpg
是全尺寸图像,您应该能够修改源代码看起来像这样:
<ul id="pikame" class="jcarousel-skin-pika">
<li><a href="#"><img src="images/trabajos/Servicios-pequena1.jpg" ref="images/trabajos/Servicos-1.jpg" alt=""/></a><span></span></li>
<li><a href="#"><img src="images/trabajos/Servicios-pequena2.jpg" ref="images/trabajos/Servicos-2.jpg" alt=""/></a><span></span></li>
<li><a href="#"><img src="images/trabajos/Servicios-pequena3.jpg" ref="images/trabajos/Servicos-3.jpg" alt=""/></a><span></span></li>
...
</ul>
和Pikachoose应该为您设置缩略图。
关于javascript - 将 Pikachoose 设置为仅显示缩略图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13323217/
我虔诚地遵循了这个教程:http://www.icodeya.com/2012/08/grails-creating-image-gallery-feat.html关于如何在 grails 中添加图片
我要修改pikachoose仅显示缩略图。我已经稍微修改了代码,这就是我所拥有的: /image/deQdG.png 这是我在base.css中修改的内容 /* Style the thumbnail
我正在使用 Fancybox 与 Pikachoose 的集成,如下所述: http://www.pikachoose.com/how-to-fancybox/ 我试图让灯箱显示下一个和上一个箭头,但
我用过Jquery Pikachoose我的页面上的插件可将一些图像显示为幻灯片。 但在 IE 中,它不是滑动图像,而是以完整 View 打开同一页面中的图像。 有趣的是,如果在脚本打开图像之前,如果
我安装了 pikachoose 脚本并正常工作,但我需要以这种形式命名拇指:imagename-100x120.jpg 当前脚本采用 html 代码中的 src 并从中生成拇指,因此看起来像这样: '
我正在使用 Fancybox 与 Pikachoose 的集成,如下所述: http://www.pikachoose.com/how-to-fancybox/ 我试图让灯箱显示下一个和上一个箭头,但
所以我目前一直在测试用于 API Hook 的 Pikachoose 画廊,并且确实有一个包含三个缩略图的画廊运行良好。然后我添加了 API Hook ,用于动画何时结束并运行一个函数来为其中一个缩略
我是一名优秀的程序员,十分优秀!