使用 JSSOR 滑块,函数 ScaleSlider() 调用 $ScaleWidth 根据视口调整滑块的大小。这是通过对#slider1_container 元素应用变换样式来实现的。
transform: scale(0.756364);
但是,这也会导致标题中的任何文本都被调整大小,使其难以辨认。
<div id="slider1_container">
<div u="slides">
<div u="caption" class="myCaption">
<p>Text goes here</p>
</div>
<img u="image" src="myImage.jpg" />
</div>
</div>
如何防止字幕文本 (.myCaption) 受到变换样式的影响?