Yes Esmi, it contains a jQuery!
<script type="text/javascript" src="https://blogandthecity.net/js/marquee-packed.js" ></script>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery("#marquee, #marquee2").css("display", "block");
jQuery("#marquee, #marquee2").css("width", jQuery(window).height() + "px");
//create instance and call method horizontal for horizontal scrolling
var horizontal = new marquee("marquee").horizontal(
{
step:1, //how many pixels to move per interval (default: 1)
interval: 40, //how often to move pixels in miliseconds (default: 10)
stop_on_hover: true, //should marquee stop on mouse hover (default: true)
backwards: false, //rotate elements in opposite direction
});
//create instance and call method horizontal for horizontal scrolling
var horizontal = new marquee("marquee2").horizontal(
{
step:1, //how many pixels to move per interval (default: 1)
interval: 40, //how often to move pixels in miliseconds (default: 10)
stop_on_hover: true, //should marquee stop on mouse hover (default: true)
backwards: false, //rotate elements in opposite direction
});
});
</script>
Where can I check if this jQuery is bundled with WordPress?