2014-12-03 178 views
1

我已经添加了使用jQuery的滑块的左/右箭头标志。它在Firefox和Internet Explorer中完美展现,但谷歌浏览器显示的是一个框,而不是箭头符号(www.unitechbd.com)。我该如何解决它?谷歌浏览器不显示箭头标志

jQuery代码 -

jQuery(document).ready(function($) { 

         $('#banner-slide').bjqs({ 
          animtype  : 'fade', 

          showcontrols : true, // show next and prev controls 
          centercontrols : true, // center controls verically 
          nexttext : '❯', // Text for 'next' button (can use HTML) 
          prevtext : '❮', // Text for 'previous' button (can use HTML) 
          showmarkers : false, // Show individual slide markers 
          centermarkers : true, // Center markers horizontally 

          animduration : 1000, // how fast the animation are 
          animspeed : 5000, // the delay between each slide 

          width   : 922, 
          height  : 500,    
          usecaptions : false, 
          responsive : true, 
          randomstart : true 
         }); 

         }); 
+1

在我的浏览器上看起来不错。 Chrome版本38.0.2125.122 – 2014-12-03 07:21:46

+0

我已经使用版本39.0.2171.71检查了它,但结果相同,显示一个框。 – Jobayer 2014-12-03 08:06:39

回答