我有一個包裝三個浮動容器的容器,包裝容器具有可變寬度,left most inner container
寬度爲100px,right most inner container
寬度爲500px。 center container
沒有固定寬度,但應該佔用儘可能多的剩餘空間。動態地使一個子容器在可變寬度父寬度內可用寬度
<style type="text/css">
#outerContainer div:nth-child(1) {float: left; width: 100px}
#outerContainer div:nth-child(2) {float: left}
#outerContainer div:nth-child(3) {float: right; width: 500px}
</style>
<div id="outerContainer">
<div>left most inner container</div>
<div>center container</div>
<div>right most inner container</div>
</div>
動態中心容器應用了幾個款式,這使得它的內容overflow: hidden
和省略號以用於演示。
<style type="text/css">
#outerContainer div:nth-child(1) {
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;
}
</style>
我不知道什麼解決方案是動態縮放這個內部元素的寬度使用唯一的CSS。這是我的JavaScript解決方案,但我想把它看成是過度的。
NS.textWidth = function(sourceSel){
var sourceSel = sourceSel,
html_org = $(sourceSel).html(),
html_calc = '<span>' + html_org + '</span>';
//Wrap contents with a span.
$(sourceSel).html(html_calc).css({width:'100%'});
//Find width of contents within span.
var width = $(sourceSel).find('span:first').width();
//Replace with original contents.
$(sourceSel).html(html_org);
return width;
};
adjustContainerWidth();
$(window).bind('resize', function(e){
clearTimeout(c.resize_timeout);
c.resize_timeout = setTimeout(function() {
adjustContainerWidth();
}, 200);
});
function adjustContainerWidth() {
var winW = parseInt($(window).width());
var firstContainer = parseInt($('#outerContainer div:nth-child(1)').width());
var lastContainer = parseInt($('#outerContainer div:nth-child(3)').width());
var availW = winW - firstContainer - lastContainer;
var textW = NS.textWidth('#outerContainer div:nth-child(2)');
if (availW > 40 && availW < textW) {
$('#outerContainer div:nth-child(1)').css({ width : availW + 'px' });
} else {
$('#outerContainer div:nth-child(1)').css({ width : textW + 'px' });
}
}
你們是不是要找到一個更好的* * JavaScript解決方案,或只CSS的解決方案?你可以做一個http://jsfiddle.net/演示顯示你到目前爲止? – thirtydot 2012-04-23 21:25:41
這裏提到的很多代碼是來自一個更大的項目的片段,我會看看我能做些什麼來爲它做一個jsfiddle。另外,CSS只是我的首選解決方法。 – 2012-04-23 23:11:24