Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
A little tips to get started
#9
The first script I need to integrate is a simple news scroll bar containing latest events.

Code:
<script type="text/javascript" src="../uploads/javascript/mootools.js"></script>
<script type="text/javascript" src="../uploads/javascript/qscroller.js"></script>
<!-- External scripts are saved in the uploads newly created javascript folder-->
<div id="qscroller1"></div>
<div class="hide">
  <span class="qslide">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
  </span>
  <span class="qslide">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
  </span>
  <span class="qslide">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
  </span>
  <span class="qslide">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
  </span>
  <span class="qslide">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
  </span>
</div>
<script type="text/javascript">
<!--
window.addEvent('domready', function() {
var opt = {
  duration: 3000,
  delay: 1000,
  auto:true,
  onMouseEnter: function(){this.stop();},
  onMouseLeave: function(){this.play();}
}
var scroller = new QScroller('qscroller1',opt);
scroller.load();
});
//-->
</script>

I also added the following CSS styles for the news block. I'm using Innovation theme with a little twist.

Code:
header .breadcrumbs #hide {
display:none;
}

I have placed these codes in just a simple HTML file and it works. Originally, I placed the JavaScript code as part of the Sidebar Component, and the CSS directly embedded in the template style sheet.
Reply


Messages In This Thread
A little tips to get started - by angelazou - 2011-03-13, 00:20:28
A little tips to get started - by ccagle8 - 2011-03-13, 00:31:10
A little tips to get started - by angelazou - 2011-03-13, 01:08:27
A little tips to get started - by Connie - 2011-03-13, 03:08:26
A little tips to get started - by angelazou - 2011-05-07, 14:05:03
A little tips to get started - by Connie - 2011-05-07, 16:01:22
A little tips to get started - by angelazou - 2011-05-07, 16:46:11
A little tips to get started - by Connie - 2011-05-07, 22:40:15
A little tips to get started - by angelazou - 2011-05-10, 17:40:46
A little tips to get started - by Connie - 2011-05-10, 18:05:26
A little tips to get started - by angelazou - 2011-05-10, 18:47:33
A little tips to get started - by yojoe - 2011-05-10, 19:58:05
A little tips to get started - by angelazou - 2011-05-10, 21:04:49
A little tips to get started - by angelazou - 2011-05-10, 21:07:55
A little tips to get started - by Connie - 2011-05-10, 21:39:36
A little tips to get started - by mvlcek - 2011-05-10, 21:48:31
A little tips to get started - by angelazou - 2011-05-18, 15:38:51
A little tips to get started - by yojoe - 2011-05-18, 23:11:56
A little tips to get started - by angelazou - 2011-05-22, 17:24:22
A little tips to get started - by angelazou - 2011-05-25, 13:51:17



Users browsing this thread: 1 Guest(s)