我可以将面板宽度设置为 coda 滑块内图像的宽度吗?
我正在使用 coda 滑块制作一个网站,我希望根据 div 中的图像宽度设置 panelWidth。
$(".panel").each(function(){
var imageWidth = $(this).find("img").width()+1;
$(this).width(imageWidth);
});
有什么想法吗?
I am making a site using coda slider, the panelWidth I'd like to be set depending on the image width in the div.
$(".panel").each(function(){
var imageWidth = $(this).find("img").width()+1;
$(this).width(imageWidth);
});
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决您的问题的一种方法是修改 coda slider 插件。我没有找到使用该插件执行此操作的开箱即用的方法。这是做你想做的事情的粗略方法,将其视为一点灵感。我修改了
alterPanelHeight
函数,因此如果您设置autoHeight
选项,它也会改变宽度。注意:修改不会改变加载时的宽度,第一次修改将在第一次滚动之后发生......One way for your problem is to modify the coda slider plugin. I didn't find a out of the box way to do this with the plugin. Here is a rough way to do what you want, look at it as a little inspiration. I modified the
alterPanelHeight
function, so if you set theautoHeight
option, it will alter the width, too. Note: The modification will not alter the width on load, the first modification will take place after the first scroll...