Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/jquery/84.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/34.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Jquery bxSlider-从寻呼机中删除号码?_Jquery_Css_Html_Bxslider - Fatal编程技术网

Jquery bxSlider-从寻呼机中删除号码?

Jquery bxSlider-从寻呼机中删除号码?,jquery,css,html,bxslider,Jquery,Css,Html,Bxslider,我在这里使用bxSlider:它工作正常,但我希望使用项目符号而不是数字,因此我将此添加到css文件中: .bx-pager a{ background: transparent url('/src/images/bullets.png') 0 0 no-repeat; padding: 0 4px; } .bx-pager a.pager-active{ background-position: 0 -58px; } 它工作正常,但我似乎不知道如何删除这些图像。。所以我只

我在这里使用bxSlider:它工作正常,但我希望使用项目符号而不是数字,因此我将此添加到css文件中:

    .bx-pager a{
  background: transparent url('/src/images/bullets.png') 0 0 no-repeat;
  padding: 0 4px;
}
.bx-pager a.pager-active{
  background-position: 0 -58px;
}
它工作正常,但我似乎不知道如何删除这些图像。。所以我只剩下这个:

有什么想法吗?

试试这个

.bx-pager a{
  background: transparent url('/src/images/bullets.png') 0 0 no-repeat;
  padding: 0 4px;
  color: transparent;
  }
.bx-pager a.pager-active{
  background-position: 0 -58px;
  color: transparent;

  }
变化就在这里
颜色:透明

试试这个

.bx-pager a{
  background: transparent url('/src/images/bullets.png') 0 0 no-repeat;
  padding: 0 4px;
  color: transparent;
  }
.bx-pager a.pager-active{
  background-position: 0 -58px;
  color: transparent;

  }
变化就在这里
颜色:透明

您可以尝试以下方法:

.bx-pager a {
  background: transparent url('/src/images/bullets.png') 0 0 no-repeat;
  padding: 0 4px;
  text-indent: -9999px;
  }
.bx-pager a.pager-active{
  background-position: 0 -58px;
  }
您可以这样尝试:

.bx-pager a {
  background: transparent url('/src/images/bullets.png') 0 0 no-repeat;
  padding: 0 4px;
  text-indent: -9999px;
  }
.bx-pager a.pager-active{
  background-position: 0 -58px;
  }

你能在jsfiddle.net上共享这个滑块吗?然后就可以检查了。你能在jsfiddle.net上共享这个滑块吗?之后可以进行检查。这会删除数字,但无法单击项目符号。。如果没有数字,我如何使它们工作?这会删除数字,但项目符号不可单击。。如果没有数字,我如何让它们工作?