JS部分无效果
<script src="js/jquery-2.1.1.min.js"></script>
<script type="text/javascript">
$(()=>{
console.log('页面元素加载完执行');
var outerWidth = 600,
outerHeight = 400;
var $marquee = $('.marquee');
var $content = $marquee.find('.content');
var $ig = $content.find('.ig');
var igLength = $ig.length;
var contentWidth = outerWidth*igLength;
$marquee.css({
"width":'${outerWidth}px',
"height":'${outerHeight}px'
});
$ig.css({
"width":'${outerWidth}px',
"height":'${outerHeight}px'
});
$content.css({
"width":'${contentWidth}px',
"height":'${outerHeight}px'
});
})
</script>求大佬指点,谢谢