我使用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
});
});