launch-sales.component.html 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <app-main-header></app-main-header>
  2. <div class="col-md-12">
  3. <div class="row">
  4. <div class="col-md-12 mt_25">
  5. <a routerLink="/threesixty-dashboard" class="wid3_font">
  6. <img src="assets/images/back.png" class="wid3"> <span>{{model_name}}</span>
  7. </a>
  8. </div>
  9. </div>
  10. <div class="left_card" *ngIf="loader">
  11. <div class="inner_load" >
  12. <svg version="1.1" id="L9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
  13. viewBox="0 0 100 100" enable-background="new 0 0 0 0" xml:space="preserve">
  14. <path fill="#00AFD7" d="M73,50c0-12.7-10.3-23-23-23S27,37.3,27,50 M30.9,50c0-10.5,8.5-19.1,19.1-19.1S69.1,39.5,69.1,50">
  15. <animateTransform attributeName="transform" attributeType="XML" type="rotate" dur="1s" from="0 50 50" to="360 50 50" repeatCount="indefinite"
  16. />
  17. </path>
  18. </svg>
  19. <p>Just a moment...</p>
  20. </div>
  21. </div>
  22. <div class="row" *ngIf="!loader">
  23. <div class="col-md-2">
  24. <div id="content">
  25. <div class="circle_sales black" *ngFor="let sales of salesList;let i=index" (click)="rotateImage(sales)">{{i+1}}
  26. <div class="big_button_back big_button_5" [ngClass]="imageID==sales.id?'highlight':''">{{sales.title}}</div>
  27. </div>
  28. <!-- <div class="circle_sales black" (click)="rotateImage('2')">2
  29. <div class="big_button_back big_button_5">RIGHT</div>
  30. </div>
  31. <div class="circle_sales black" (click)="rotateImage('3')">3
  32. <div class="big_button_back big_button_5">FRONT</div>
  33. </div>
  34. <div class="circle_sales black" (click)="rotateImage('4')">4
  35. <div class="big_button_back big_button_5">REAR</div>
  36. </div>
  37. <div class="circle_sales black" (click)="rotateImage('5')">5
  38. <div class="big_button_back big_button_5">TOP</div>
  39. </div> -->
  40. </div>
  41. </div>
  42. <div class="col-md-10 degree_top">
  43. <div class="lg-container" *ngIf="salesList.length>0">
  44. <div class="img_height" *ngIf="activeClass">
  45. <img class="lg-image wid66" src={{imageUrl}}>
  46. <!-- <img src="../.assets/images/back.png" class="wid3 col-md-2 img-responsive"> -->
  47. <div *ngFor="let hotspot of imageHotspot;let j=index" [ngStyle]="{'top':hotspot.y+'px','left':hotspot.x+'px'}" class="lg-hotspot bottom-left" (click)="hotspotPoint($event,j)">
  48. <div class="lg-hotspot-button active-content{{j}}" ></div>
  49. <div class="lg-hotspot-label">
  50. <h4 class="content-title">{{hotspot.contentTitle}}</h4>
  51. <img class="content-image" src={{hotspot.contentUrl}} width="auto" height="100px">
  52. <p class="content-description">{{hotspot.contentDescription}}</p>
  53. </div>
  54. </div>
  55. <!-- <div style="top: 21%; left: 88%;" class="lg-hotspot top-right">
  56. <div class="lg-hotspot-button"></div>
  57. <div class="lg-hotspot-label">
  58. <h4>Rocket ship</h4>
  59. <p>Rocket ships can be great for business. Although they cost a lot of money, they can generate ideas and take
  60. your business to new heights.</p>
  61. </div>
  62. </div>
  63. <div style="top: 45%; left: 15%;" class="lg-hotspot top-left">
  64. <div class="lg-hotspot-button"></div>
  65. <div class="lg-hotspot-label">
  66. <h4>Cashbook</h4>
  67. <p>What could be better than a book of cash?</p>
  68. </div>
  69. </div>
  70. <div style="top: 45.5%; left: 62%;" class="lg-hotspot top-right">
  71. <div class="lg-hotspot-button"></div>
  72. <div class="lg-hotspot-label">
  73. <h4>Gears</h4>
  74. <p>Gears are used in a lot of situations, but here they're probably being used metaphorically.</p>
  75. </div>
  76. </div>
  77. <div style="top: 83%; left: 20%;" class="lg-hotspot bottom-left">
  78. <div class="lg-hotspot-button"></div>
  79. <div class="lg-hotspot-label">
  80. <h4>Notes</h4>
  81. <p>Always take notes!</p>
  82. </div>
  83. </div>
  84. <div style="top: 85%; left: 91%;" class="lg-hotspot bottom-right">
  85. <div class="lg-hotspot-button"></div>
  86. <div class="lg-hotspot-label">
  87. <p>This is a label without a title.</p>
  88. </div>
  89. </div> -->
  90. </div>
  91. </div>
  92. <div *ngIf="salesList.length==0">
  93. No Record Found
  94. </div>
  95. </div>
  96. </div>
  97. </div>
  98. <app-sidemenu></app-sidemenu>
  99. <app-footer></app-footer>