pin_toast.html 252 B

123456789101112
  1. <div class="pin-toast-container">
  2. <div class="pin-toast" style="display: none;"></div>
  3. </div>
  4. <script>
  5. function showTip(title)
  6. {
  7. $('.pin-toast').html(title);
  8. $('.pin-toast').fadeIn(1500,function(){
  9. $('.pin-toast').fadeOut(1500);
  10. })
  11. }
  12. </script>