index.js 764 B

1234567891011121314151617181920212223242526272829303132
  1. $(document).ready(function(){
  2. $("#div_struct").load("img/str.svg",function(){
  3. $("#item-nach").mouseover(function(){
  4. // $(this).find("circle").attr("fill","rgb(255,0,0)");
  5. $(this).find("ellipse").attr("ry",48);
  6. $(this).find("ellipse").attr("rx",48);
  7. $(this).find("text").attr("font-size",14);
  8. });
  9. $("#item-nach").mouseout(function(){
  10. $(this).find("ellipse").attr("ry",32);
  11. $(this).find("ellipse").attr("rx",32);
  12. $(this).find("text").attr("font-size",10);
  13. // $(this).find("circle").attr("fill","rgb(114,159,207)");
  14. });
  15. });
  16. $(".clSmoothScroll1").click(function (event) {
  17. event.preventDefault();
  18. var id = $(this).attr('href'),
  19. top = $(id).offset().top-50;
  20. $('body,html').animate({scrollTop: top}, 500);
  21. });
  22. });