我尝试构建的滑块是这样的:
我正在使用的wordpress主题是使用革命滑块。 html和css是:
#content .tparrows,
#content .hesperiden.tparrows {
background: transparent;
width: 44px;
height: inherit;
border-radius: 0;
top: 50% !important;
-webkit-transition: background linear .1s, color linear .1s, box-shadow linear .1s;
-moz-transition: background linear .1s, color linear .1s, box-shadow linear .1s;
-o-transition: background linear .1s, color linear .1s, box-shadow linear .1s;
transition: background linear .1s, color linear .1s, box-shadow linear .1s;
text-align: center;
overflow: hidden;
}

<div class="tp-leftarrow tparrows hesperiden noSwipe" style="top: 50%; transform: matrix(1, 0, 0, 1, 250, -145); left: 0px;"></div>
<div class="tp-rightarrow tparrows hesperiden noSwipe" style="top: 50%; transform: matrix(1, 0, 0, 1, -344, -145); left: 100%;"></div>
&#13;
最初的宽度和高度是44px我想点击并在我点击鼠标的任何地方更换幻灯片。当我改变高度继承工作正常,无法找到如何处理宽度。如果我给一个px值在一个屏幕上工作正常,那么下一步就不行了。 感谢
答案 0 :(得分:0)
试试这个CSS代码:
.hesperiden.tparrows {
width: 50%;
height: 100%;
}