使五星 7.x-2.2 适合移动设备



我正在使用 Fivestar 2.2 模块。一切正常,但在触摸屏上投票则不然:不可能在 5 星小部件上给出 5 星,即使它在桌面上完美运行。不幸的是,我不允许提供链接。

有人已经解决了这个问题吗? Drupal.org 不是帮助。

/**
* @file
*
* Fivestar JavaScript behaviors integration.
*/
/**
* Create a degradeable star rating interface out of a simple form structure.
*
* Originally based on the Star Rating jQuery plugin by Wil Stuckey:
* http://sandbox.wilstuckey.com/jquery-ratings/
*/
(function($){ // Create local scope.
Drupal.behaviors.fivestar = {
attach: function (context) {
$(context).find('div.fivestar-form-item').once('fivestar', function() {
  var $this = $(this);
  var $container = $('<div class="fivestar-widget clearfix"></div>');
  var $select = $('select', $this);
  // Setup the cancel button
  var $cancel = $('option[value="0"]', $this);
  if ($cancel.length) {
    $('<div class="cancel"><a href="#0" title="' + $cancel.text() + '">' + $cancel.text() + '</a></div>')
      .appendTo($container);
  }
  // Setup the rating buttons
  var $options = $('option', $this).not('[value="-"], [value="0"]');
  var index = -1;
  $options.each(function(i, element) {
    var classes = 'star-' + (i+1);
    classes += (i + 1) % 2 == 0 ? ' even' : ' odd';
    classes += i == 0 ? ' star-first' : '';
    classes += i + 1 == $options.length ? ' star-last' : '';
    $('<div class="star"><a href="#' + element.value + '" title="' + element.text + '">' + element.text + '</a></div>')
      .addClass(classes)
      .appendTo($container);
    if (element.value == $select.val()) {
      index = i + 1;
    }
  });
  if (index != -1) {
    $container.find('.star').slice(0, index).addClass('on');
  }
  $container.addClass('fivestar-widget-' + ($options.length));
  $container.find('a')
    .bind('click', $this, Drupal.behaviors.fivestar.rate)
    .bind('mouseover', $this, Drupal.behaviors.fivestar.hover);
  $container.bind('mouseover mouseout', $this, Drupal.behaviors.fivestar.hover);
  // Attach the new widget and hide the existing widget.
  $select.after($container).css('display', 'none');
  // Allow other modules to modify the widget.
  Drupal.attachBehaviors($this);
});
},
rate: function(event) {
var $this = $(this);
var $widget = event.data;
var value = this.hash.replace('#', '');
$('select', $widget).val(value).change();
var $this_star = (value == 0) ? $this.parent().parent().find('.star') : 
$this.closest('.star');
$this_star.prevAll('.star').andSelf().addClass('on');
$this_star.nextAll('.star').removeClass('on');
if(value==0){
  $this_star.removeClass('on');
}
event.preventDefault();
},
hover: function(event) {
var $this = $(this);
var $widget = event.data;
var $target = $(event.target);
var $stars = $('.star', $this);
if (event.type == 'mouseover') {
  var index = $stars.index($target.parent());
  $stars.each(function(i, element) {
    if (i <= index) {
      $(element).addClass('hover');
    } else {
      $(element).removeClass('hover');
    }
  });
} else {
  $stars.removeClass('hover');
}
}
};
})(jQuery);
抱歉,

如果这不是您要求的,但我会尽力提供帮助。不要使用五星,我也遇到过同样的情况。我建议您尝试费率模块(https://www.drupal.org/project/rate),在我看来这是一个更完整的解决方案。

有一个响应式网站,当然可以与移动设备配合使用,您可以毫无问题地投票,尽管我不能保证它是移动就绪的。

最新更新